mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 06:30:08 +02:00
removes unused features. (#6938)
* removes unused features. * Adds back multithreading feature to sysinfo. * Adds back alloc for percent-encoding * Adds updated lock file. * Missed one sysinfo. * `indexmap` just defaults * Revert `miette``default-features=false` Co-authored-by: Stefan Holderbach <sholderbach@users.noreply.github.com> Co-authored-by: JT <547158+jntrnr@users.noreply.github.com>
This commit is contained in:
@ -23,7 +23,7 @@ nu-color-config = { path = "../nu-color-config", version = "0.71.1" }
|
||||
reedline = { version = "0.14.0", features = ["bashisms", "sqlite"]}
|
||||
|
||||
atty = "0.2.14"
|
||||
chrono = "0.4.21"
|
||||
chrono = { default-features = false, features = ["std"], version = "0.4.21" }
|
||||
crossterm = "0.24.0"
|
||||
fancy-regex = "0.10.0"
|
||||
fuzzy-matcher = "0.3.7"
|
||||
|
@ -32,13 +32,13 @@ base64 = "0.13.0"
|
||||
byteorder = "1.4.3"
|
||||
bytesize = "1.1.0"
|
||||
calamine = "0.18.0"
|
||||
chrono = { version = "0.4.21", features = ["serde", "unstable-locales"] }
|
||||
chrono = { version = "0.4.21", features = ["unstable-locales", "std"], default-features = false }
|
||||
chrono-humanize = "0.2.1"
|
||||
chrono-tz = "0.6.3"
|
||||
crossterm = "0.24.0"
|
||||
csv = "1.1.6"
|
||||
dialoguer = "0.9.0"
|
||||
digest = "0.10.0"
|
||||
dialoguer = { default-features = false, version = "0.9.0" }
|
||||
digest = { default-features = false, version = "0.10.0" }
|
||||
dtparse = "1.2.0"
|
||||
eml-parser = "0.1.0"
|
||||
encoding_rs = "0.8.30"
|
||||
|
@ -13,8 +13,9 @@ nu-path = { path = "../nu-path", version = "0.71.1" }
|
||||
nu-glob = { path = "../nu-glob", version = "0.71.1" }
|
||||
nu-utils = { path = "../nu-utils", version = "0.71.1" }
|
||||
|
||||
chrono = { version="0.4.21", features=["serde"] }
|
||||
sysinfo = "0.26.2"
|
||||
chrono = { version="0.4.21", features = ["std"], default-features = false }
|
||||
sysinfo ="0.26.2"
|
||||
strip-ansi-escapes = "0.1.1"
|
||||
|
||||
[features]
|
||||
plugin = []
|
||||
|
@ -9,7 +9,7 @@ version = "0.71.1"
|
||||
|
||||
[dependencies]
|
||||
bytesize = "1.1.0"
|
||||
chrono = "0.4.21"
|
||||
chrono = { default-features = false, features = ['std'], version = "0.4.21" }
|
||||
itertools = "0.10"
|
||||
miette = {version = "5.1.0", features = ["fancy-no-backtrace"]}
|
||||
thiserror = "1.0.31"
|
||||
|
@ -11,7 +11,7 @@ version = "0.71.1"
|
||||
bincode = "1.3.3"
|
||||
nu-protocol = { path = "../nu-protocol", version = "0.71.1" }
|
||||
nu-engine = { path = "../nu-engine", version = "0.71.1" }
|
||||
serde = {version = "1.0.143", features = ["derive"]}
|
||||
serde = { version = "1.0.143" }
|
||||
serde_json = { version = "1.0"}
|
||||
rmp = "0.8.11"
|
||||
rmp-serde = "1.1.0"
|
||||
|
@ -14,13 +14,13 @@ nu-utils = { path = "../nu-utils", version = "0.71.1" }
|
||||
nu-json = { path = "../nu-json", version = "0.71.1" }
|
||||
|
||||
byte-unit = "4.0.9"
|
||||
chrono = { version="0.4.21", features=["serde"] }
|
||||
chrono = { version="0.4.21", features= ["serde", "std"], default-features = false }
|
||||
chrono-humanize = "0.2.1"
|
||||
fancy-regex = "0.10.0"
|
||||
indexmap = { version="1.7", features=["serde-1"] }
|
||||
indexmap = { version="1.7" }
|
||||
miette = { version = "5.1.0", features = ["fancy-no-backtrace"] }
|
||||
num-format = "0.4.3"
|
||||
serde = {version = "1.0.130", features = ["derive"]}
|
||||
serde = {version = "1.0.143", default-features = false }
|
||||
serde_json = { version = "1.0", optional = true }
|
||||
strum = "0.24"
|
||||
strum_macros = "0.24"
|
||||
|
@ -9,5 +9,5 @@ edition = "2021"
|
||||
[dependencies]
|
||||
nu-plugin = { path = "../nu-plugin", version = "0.71.1" }
|
||||
nu-protocol = { path = "../nu-protocol", version = "0.71.1", features = ["plugin"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde = { version = "1.0", default-features = false }
|
||||
typetag = "0.1.8"
|
||||
|
@ -15,6 +15,6 @@ nu-plugin = { path="../nu-plugin", version = "0.71.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.71.1" }
|
||||
nu-engine = { path="../nu-engine", version = "0.71.1" }
|
||||
gjson = "0.8.0"
|
||||
scraper = "0.13.0"
|
||||
scraper = { default-features = false, version = "0.13.0" }
|
||||
sxd-document = "0.3.2"
|
||||
sxd-xpath = "0.4.2"
|
||||
|
Reference in New Issue
Block a user