nushell/crates/nu-cli/Cargo.toml

18 lines
511 B
TOML
Raw Normal View History

2021-08-10 18:51:08 +00:00
[package]
name = "nu-cli"
version = "0.1.0"
edition = "2018"
[dependencies]
nu-engine = { path = "../nu-engine" }
2021-10-04 19:21:31 +00:00
nu-path = { path = "../nu-path" }
2021-08-10 18:51:08 +00:00
nu-parser = { path = "../nu-parser" }
2021-09-02 01:29:43 +00:00
nu-protocol = { path = "../nu-protocol" }
# nu-ansi-term = { path = "../nu-ansi-term" }
nu-ansi-term = "0.42.0"
nu-color-config = { path = "../nu-color-config" }
2021-10-04 19:21:31 +00:00
2021-09-22 23:49:39 +00:00
miette = { version = "3.0.0", features = ["fancy"] }
thiserror = "1.0.29"
2021-10-05 20:03:43 +00:00
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
2022-01-01 21:42:50 +00:00
log = "0.4"