mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 02:13:47 +01:00
d2ac506de3
* Changes to allow plugins to be loaded in a multi-threaded manner in order to decrease startup time. * Ran rust fmt and clippy to find and fix first pass errors. Updated launch.jason to make debugging easier in vscode. Also added tasks.json so tasks like clippy can be ran easily. * ran fmt again * Delete launch.json Remove IDE settings file * Remove IDE settings file * Ignore vscode IDE settings * Cloned the context instead of Arc/Mutexing it. Co-authored-by: Darren Schroeder <fdncred@hotmail.com> Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
32 lines
723 B
TOML
32 lines
723 B
TOML
[package]
|
|
name = "nu-errors"
|
|
version = "0.13.0"
|
|
authors = ["The Nu Project Contributors"]
|
|
edition = "2018"
|
|
description = "Core error subsystem for Nushell"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
nu-source = { path = "../nu-source", version = "0.13.0" }
|
|
|
|
ansi_term = "0.12.1"
|
|
bigdecimal = { version = "0.1.0", features = ["serde"] }
|
|
derive-new = "0.5.8"
|
|
language-reporting = "0.4.0"
|
|
num-bigint = { version = "0.2.6", features = ["serde"] }
|
|
num-traits = "0.2.11"
|
|
serde = { version = "1.0.106", features = ["derive"] }
|
|
getset = "0.1.0"
|
|
|
|
# implement conversions
|
|
serde_yaml = "0.8"
|
|
toml = "0.5.6"
|
|
serde_json = "1.0.51"
|
|
glob = "0.3.0"
|
|
|
|
[build-dependencies]
|
|
nu-build = { version = "0.13.0", path = "../nu-build" }
|