nushell/crates/nu-command/Cargo.toml

51 lines
1.3 KiB
TOML
Raw Normal View History

2021-09-02 01:29:43 +00:00
[package]
name = "nu-command"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-09-10 01:06:44 +00:00
nu-engine = { path = "../nu-engine" }
2021-10-01 05:11:49 +00:00
nu-json = { path = "../nu-json" }
2021-10-02 20:16:37 +00:00
nu-path = { path = "../nu-path" }
2021-09-02 22:58:15 +00:00
nu-protocol = { path = "../nu-protocol" }
2021-09-10 02:27:12 +00:00
nu-table = { path = "../nu-table" }
nu-term-grid = { path = "../nu-term-grid" }
2021-10-09 13:10:10 +00:00
nu-parser = { path = "../nu-parser" }
nu-ansi-term = { path = "../nu-ansi-term" }
2021-10-12 21:55:07 +00:00
trash = { version = "1.3.0", optional = true }
2021-10-12 21:55:07 +00:00
unicode-segmentation = "1.8.0"
2021-09-10 01:06:44 +00:00
# Potential dependencies for extras
2021-11-09 20:17:37 +00:00
csv = "1.1.3"
2021-10-01 05:11:49 +00:00
glob = "0.3.0"
Inflector = "0.11"
2021-10-01 06:53:47 +00:00
thiserror = "1.0.29"
2021-10-02 02:09:16 +00:00
sysinfo = "0.20.4"
chrono = { version = "0.4.19", features = ["serde"] }
2021-10-31 06:54:51 +00:00
chrono-humanize = "0.2.1"
chrono-tz = "0.6.0"
2021-10-05 13:43:20 +00:00
terminal_size = "0.1.17"
indexmap = { version="1.7", features=["serde-1"] }
lscolors = { version = "0.8.0", features = ["crossterm"] }
bytesize = "1.1.0"
2021-10-15 18:51:25 +00:00
dialoguer = "0.9.0"
2021-10-26 01:30:53 +00:00
rayon = "1.5.1"
regex = "1.5.4"
2021-10-31 06:54:51 +00:00
titlecase = "1.1.0"
meval = "0.2.0"
serde = { version="1.0.123", features=["derive"] }
serde_yaml = "0.8.16"
serde_urlencoded = "0.7.0"
eml-parser = "0.1.0"
toml = "0.5.8"
itertools = "0.10.0"
calamine = "0.18.0"
rand = "0.8"
[features]
trash-support = ["trash"]
2021-11-02 20:56:00 +00:00
plugin = ["nu-parser/plugin"]