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" }
|
2021-10-07 15:32:39 +00:00
|
|
|
nu-term-grid = { path = "../nu-term-grid" }
|
2021-10-09 13:10:10 +00:00
|
|
|
nu-parser = { path = "../nu-parser" }
|
2021-10-10 04:13:15 +00:00
|
|
|
trash = { version = "1.3.0", optional = true }
|
2021-09-10 01:06:44 +00:00
|
|
|
|
|
|
|
# Potential dependencies for extras
|
2021-10-01 05:11:49 +00:00
|
|
|
glob = "0.3.0"
|
2021-10-01 06:53:47 +00:00
|
|
|
thiserror = "1.0.29"
|
2021-10-02 02:09:16 +00:00
|
|
|
sysinfo = "0.20.4"
|
2021-10-08 14:40:20 +00:00
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
2021-10-05 13:43:20 +00:00
|
|
|
terminal_size = "0.1.17"
|
2021-10-08 14:40:20 +00:00
|
|
|
lscolors = { version = "0.8.0", features = ["crossterm"] }
|
2021-10-10 04:13:15 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
trash-support = ["trash"]
|