mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 06:30:08 +02:00
Less deps (#4038)
* compiles on nightly now. (breaking change) * less deps * Switch over to new resolver (it's been stable for a while.) * let's leave num-format for another PR
This commit is contained in:
@ -21,7 +21,6 @@ derive_serde_style = ["serde"]
|
||||
[dependencies]
|
||||
overload = "0.1.1"
|
||||
serde = { version="1.0.90", features=["derive"], optional=true }
|
||||
itertools = "0.10.0"
|
||||
|
||||
# [dependencies.serde]
|
||||
# version = "1.0.90"
|
||||
|
@ -34,25 +34,19 @@ Inflector = "0.11"
|
||||
arboard = { version="1.1.0", optional=true }
|
||||
base64 = "0.13.0"
|
||||
bigdecimal = { package = "bigdecimal-rs", version = "0.2.1", features = ["serde"] }
|
||||
byte-unit = "4.0.9"
|
||||
bytes = "1.0.1"
|
||||
calamine = "0.18.0"
|
||||
chrono = { version="0.4.19", features=["serde"] }
|
||||
chrono-tz = "0.5.3"
|
||||
codespan-reporting = "0.11.0"
|
||||
crossterm = { version="0.19.0", optional=true }
|
||||
csv = "1.1.3"
|
||||
ctrlc = { version="3.1.7", optional=true }
|
||||
derive-new = "0.5.8"
|
||||
directories-next = "2.0.0"
|
||||
dirs-next = "2.0.0"
|
||||
dtparse = "1.2.0"
|
||||
eml-parser = "0.1.0"
|
||||
encoding_rs = "0.8.28"
|
||||
filesize = "0.2.0"
|
||||
fs_extra = "1.2.0"
|
||||
futures = { version="0.3.12", features=["compat", "io-compat"] }
|
||||
getset = "0.1.1"
|
||||
glob = "0.3.0"
|
||||
htmlescape = "0.3.1"
|
||||
ical = "0.7.0"
|
||||
@ -67,32 +61,24 @@ num-bigint = { version="0.3.1", features=["serde"] }
|
||||
num-format = { version="0.4.0", features=["with-num-bigint"] }
|
||||
num-traits = "0.2.14"
|
||||
parking_lot = "0.11.1"
|
||||
pin-utils = "0.1.0"
|
||||
query_interface = "0.3.5"
|
||||
quick-xml = "0.22"
|
||||
rand = "0.8"
|
||||
rayon = "1.5.0"
|
||||
regex = "1.4.3"
|
||||
reqwest = {version = "0.11", optional = true }
|
||||
roxmltree = "0.14.0"
|
||||
rust-embed = "5.9.0"
|
||||
rustyline = { version="9.0.0", optional=true }
|
||||
serde = { version="1.0.123", features=["derive"] }
|
||||
serde_bytes = "0.11.5"
|
||||
serde_ini = "0.2.0"
|
||||
serde_json = "1.0.61"
|
||||
serde_urlencoded = "0.7.0"
|
||||
serde_yaml = "0.8.16"
|
||||
sha2 = "0.9.3"
|
||||
strip-ansi-escapes = "0.1.0"
|
||||
sxd-document = "0.3.2"
|
||||
sxd-xpath = "0.4.2"
|
||||
sysinfo = { version = "0.20.2", optional = true }
|
||||
thiserror = "1.0.26"
|
||||
tempfile = "3.2.0"
|
||||
term = { version="0.7.0", optional=true }
|
||||
term_size = "0.3.2"
|
||||
termcolor = "1.1.2"
|
||||
titlecase = "1.1.0"
|
||||
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
|
||||
toml = "0.5.8"
|
||||
@ -115,13 +101,8 @@ users = "0.11.0"
|
||||
# TODO this will be possible with new dependency resolver
|
||||
# (currently on nightly behind -Zfeatures=itarget):
|
||||
# https://github.com/rust-lang/cargo/issues/7914
|
||||
#[target.'cfg(not(windows))'.dependencies]
|
||||
#num-format = {version = "0.4", features = ["with-system-locale"]}
|
||||
|
||||
[dependencies.rusqlite]
|
||||
features = ["bundled", "blob"]
|
||||
optional = true
|
||||
version = "0.25.3"
|
||||
# [target.'cfg(not(windows))'.dependencies]
|
||||
# num-format = { version = "0.4", features = ["with-system-locale"] }
|
||||
|
||||
[build-dependencies]
|
||||
shadow-rs = "0.6"
|
||||
|
@ -12,14 +12,11 @@ doctest = false
|
||||
[dependencies]
|
||||
nu-engine = { version = "0.37.1", path="../nu-engine" }
|
||||
nu-data = { version = "0.37.1", path="../nu-data" }
|
||||
nu-errors = { version = "0.37.1", path="../nu-errors" }
|
||||
nu-parser = { version = "0.37.1", path="../nu-parser" }
|
||||
nu-path = { version = "0.37.1", path="../nu-path" }
|
||||
nu-protocol = { version = "0.37.1", path="../nu-protocol" }
|
||||
nu-source = { version = "0.37.1", path="../nu-source" }
|
||||
nu-test-support = { version = "0.37.1", path="../nu-test-support" }
|
||||
|
||||
dirs-next = "2.0.0"
|
||||
indexmap = { version="1.6.1", features=["serde-1"] }
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
|
@ -16,14 +16,12 @@ chrono = "0.4.19"
|
||||
common-path = "1.0.0"
|
||||
derive-new = "0.5.8"
|
||||
directories-next = "2.0.0"
|
||||
dirs-next = "2.0.0"
|
||||
getset = "0.1.1"
|
||||
indexmap = { version="1.6.1", features=["serde-1"] }
|
||||
log = "0.4.14"
|
||||
num-bigint = { version="0.3.1", features=["serde"] }
|
||||
num-format = "0.4.0"
|
||||
num-traits = "0.2.14"
|
||||
query_interface = "0.3.5"
|
||||
serde = { version="1.0.123", features=["derive"] }
|
||||
sha2 = "0.9.3"
|
||||
sys-locale = "0.1.0"
|
||||
|
@ -22,10 +22,7 @@ nu-path = { version = "0.37.1", path="../nu-path" }
|
||||
trash = { version="1.3.0", optional=true }
|
||||
which = { version="4.0.2", optional=true }
|
||||
codespan-reporting = "0.11.0"
|
||||
dyn-clone = "1.0.4"
|
||||
ansi_term = "0.12.1"
|
||||
async-recursion = "0.3.2"
|
||||
async-trait = "0.1.42"
|
||||
bigdecimal = { package = "bigdecimal-rs", version = "0.2.1", features = ["serde"] }
|
||||
bytes = "0.5.6"
|
||||
chrono = { version="0.4.19", features=["serde"] }
|
||||
@ -34,9 +31,6 @@ dirs-next = "2.0.0"
|
||||
encoding_rs = "0.8.28"
|
||||
filesize = "0.2.0"
|
||||
fs_extra = "1.2.0"
|
||||
futures = { version="0.3.12", features=["compat", "io-compat"] }
|
||||
futures-util = "0.3.12"
|
||||
futures_codec = "0.4.1"
|
||||
getset = "0.1.1"
|
||||
glob = "0.3.0"
|
||||
indexmap = { version="1.6.1", features=["serde-1"] }
|
||||
@ -44,8 +38,6 @@ itertools = "0.10.0"
|
||||
lazy_static = "1.*"
|
||||
log = "0.4.14"
|
||||
num-bigint = { version="0.3.1", features=["serde"] }
|
||||
num-format = "0.4.0"
|
||||
num-traits = "0.2.14"
|
||||
parking_lot = "0.11.1"
|
||||
rayon = "1.5.0"
|
||||
serde = { version="1.0.123", features=["derive"] }
|
||||
|
@ -8,13 +8,10 @@ version = "0.37.1"
|
||||
|
||||
[dependencies]
|
||||
bigdecimal = { package = "bigdecimal-rs", version = "0.2.1", features = ["serde"] }
|
||||
codespan-reporting = "0.11.0"
|
||||
derive-new = "0.5.8"
|
||||
indexmap = { version="1.6.1", features=["serde-1"] }
|
||||
log = "0.4"
|
||||
num-bigint = { version="0.3.1", features=["serde"] }
|
||||
num-traits = "0.2.14"
|
||||
serde = "1.0"
|
||||
itertools = "0.10.0"
|
||||
smart-default = "0.6.0"
|
||||
|
||||
|
@ -15,10 +15,7 @@ nu-protocol = { path="../nu-protocol", version = "0.37.1" }
|
||||
nu-source = { path="../nu-source", version = "0.37.1" }
|
||||
nu-test-support = { path="../nu-test-support", version = "0.37.1" }
|
||||
nu-value-ext = { path="../nu-value-ext", version = "0.37.1" }
|
||||
|
||||
bigdecimal = { package = "bigdecimal-rs", version = "0.2.1", features = ["serde"] }
|
||||
indexmap = { version="1.6.1", features=["serde-1"] }
|
||||
num-bigint = { version="0.3.1", features=["serde"] }
|
||||
serde = { version="1.0", features=["derive"] }
|
||||
serde_json = "1.0"
|
||||
|
||||
|
@ -26,11 +26,6 @@ num-traits = "0.2.14"
|
||||
serde = { version="1.0", features=["derive"] }
|
||||
serde_bytes = "0.11.5"
|
||||
|
||||
# implement conversions
|
||||
serde_json = "1.0"
|
||||
serde_yaml = "0.8.16"
|
||||
toml = "0.5.8"
|
||||
|
||||
[dependencies.polars]
|
||||
version = "0.16.0"
|
||||
optional = true
|
||||
|
@ -11,7 +11,5 @@ nu-errors = { version = "0.37.1", path="../nu-errors" }
|
||||
nu-protocol = { version = "0.37.1", path="../nu-protocol" }
|
||||
nu-source = { version = "0.37.1", path="../nu-source" }
|
||||
|
||||
futures = { version="0.3.12", features=["compat", "io-compat"] }
|
||||
|
||||
[features]
|
||||
stable = []
|
||||
|
@ -14,11 +14,9 @@ nu-errors = { version = "0.37.1", path="../nu-errors" }
|
||||
nu-path = { version = "0.37.1", path="../nu-path" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.37.1" }
|
||||
nu-source = { path="../nu-source", version = "0.37.1" }
|
||||
nu-value-ext = { version = "0.37.1", path="../nu-value-ext" }
|
||||
|
||||
bigdecimal = { package = "bigdecimal-rs", version = "0.2.1", features = ["serde"] }
|
||||
chrono = "0.4.19"
|
||||
dunce = "1.0.1"
|
||||
getset = "0.1.1"
|
||||
glob = "0.3.0"
|
||||
indexmap = { version="1.6.1", features=["serde-1"] }
|
||||
|
@ -16,7 +16,5 @@ nu-errors = { path="../nu-errors", version = "0.37.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.37.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.37.1" }
|
||||
nu-source = { path="../nu-source", version = "0.37.1" }
|
||||
nu-value-ext = { path="../nu-value-ext", version = "0.37.1" }
|
||||
num-traits = "0.2.14"
|
||||
|
||||
[build-dependencies]
|
||||
|
@ -15,8 +15,6 @@ nu-errors = { path="../nu-errors", version = "0.37.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.37.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.37.1" }
|
||||
nu-source = { path="../nu-source", version = "0.37.1" }
|
||||
nu-value-ext = { path="../nu-value-ext", version = "0.37.1" }
|
||||
num-traits = "0.2.14"
|
||||
tempfile = "3.2.0"
|
||||
|
||||
[dependencies.rusqlite]
|
||||
|
@ -13,7 +13,6 @@ doctest = false
|
||||
nu-errors = { path="../nu-errors", version = "0.37.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.37.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.37.1" }
|
||||
nu-source = { path="../nu-source", version = "0.37.1" }
|
||||
regex = "1.4.3"
|
||||
|
||||
[build-dependencies]
|
||||
|
@ -15,6 +15,3 @@ nu-errors = { version = "0.37.1", path="../nu-errors" }
|
||||
nu-plugin = { version = "0.37.1", path="../nu-plugin" }
|
||||
nu-protocol = { version = "0.37.1", path="../nu-protocol" }
|
||||
nu-source = { version = "0.37.1", path="../nu-source" }
|
||||
|
||||
[dev-dependencies]
|
||||
nu-test-support = { path="../nu-test-support", version = "0.37.1" }
|
||||
|
@ -18,5 +18,4 @@ nu-protocol = { version = "0.37.1", path="../nu-protocol" }
|
||||
nu-source = { version = "0.37.1", path="../nu-source" }
|
||||
|
||||
[dev-dependencies]
|
||||
nu-test-support = { path="../nu-test-support", version = "0.37.1" }
|
||||
indexmap = { version="1.7", features=["serde-1"] }
|
||||
|
@ -15,7 +15,6 @@ nu-errors = { path="../nu-errors", version = "0.37.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.37.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.37.1" }
|
||||
nu-source = { path="../nu-source", version = "0.37.1" }
|
||||
nu-ansi-term = { version = "0.37.1", path="../nu-ansi-term" }
|
||||
|
||||
bat = { version="0.18", features=["regex-fancy", "paging", "git"] }
|
||||
term_size = "0.3.2"
|
||||
|
@ -15,7 +15,6 @@ nu-errors = { path="../nu-errors", version = "0.37.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.37.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.37.1" }
|
||||
nu-source = { path="../nu-source", version = "0.37.1" }
|
||||
nu-value-ext = { path="../nu-value-ext", version = "0.37.1" }
|
||||
num-traits = "0.2.14"
|
||||
|
||||
[features]
|
||||
|
@ -15,8 +15,6 @@ nu-errors = { path="../nu-errors", version = "0.37.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.37.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.37.1" }
|
||||
nu-source = { path="../nu-source", version = "0.37.1" }
|
||||
nu-value-ext = { path="../nu-value-ext", version = "0.37.1" }
|
||||
num-traits = "0.2.14"
|
||||
tempfile = "3.2.0"
|
||||
|
||||
[dependencies.rusqlite]
|
||||
|
@ -14,7 +14,6 @@ derive-new = "0.5.8"
|
||||
nu-errors = { path="../nu-errors", version = "0.37.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.37.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.37.1" }
|
||||
nu-source = { path="../nu-source", version = "0.37.1" }
|
||||
ptree = { version = "0.3.1", default-features = false }
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user