2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-14 21:18:49 +00:00
nushell/crates/nu-command/Cargo.toml

34 lines
885 B
TOML
Raw Normal View History

2021-09-02 13:29:43 +12: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 13:06:44 +12:00
nu-engine = { path = "../nu-engine" }
2021-10-01 18:11:49 +13:00
nu-json = { path = "../nu-json" }
2021-10-03 09:16:37 +13:00
nu-path = { path = "../nu-path" }
2021-09-03 10:58:15 +12:00
nu-protocol = { path = "../nu-protocol" }
2021-09-10 14:27:12 +12:00
nu-table = { path = "../nu-table" }
nu-term-grid = { path = "../nu-term-grid" }
2021-10-09 14:10:10 +01:00
nu-parser = { path = "../nu-parser" }
2021-10-23 21:08:54 +01:00
nu-plugin = { path = "../nu-plugin" }
2021-10-12 14:55:07 -07:00
trash = { version = "1.3.0", optional = true }
2021-10-12 14:55:07 -07:00
unicode-segmentation = "1.8.0"
2021-09-10 13:06:44 +12:00
# Potential dependencies for extras
2021-10-01 18:11:49 +13:00
glob = "0.3.0"
2021-10-01 19:53:47 +13:00
thiserror = "1.0.29"
2021-10-01 22:09:16 -04:00
sysinfo = "0.20.4"
chrono = { version = "0.4.19", features = ["serde"] }
2021-10-05 08:43:20 -05:00
terminal_size = "0.1.17"
lscolors = { version = "0.8.0", features = ["crossterm"] }
bytesize = "1.1.0"
2021-10-16 07:51:25 +13:00
dialoguer = "0.9.0"
2021-10-26 14:30:53 +13:00
rayon = "1.5.1"
[features]
trash-support = ["trash"]