2020-03-04 18:58:20 +00:00
|
|
|
[package]
|
2022-03-22 20:25:38 +00:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2022-04-11 18:17:06 +00:00
|
|
|
description = "CLI-related functionality for Nushell"
|
2022-08-14 12:21:20 +00:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli"
|
2022-03-22 20:25:38 +00:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2020-07-05 20:12:44 +00:00
|
|
|
name = "nu-cli"
|
2022-08-08 20:15:41 +00:00
|
|
|
version = "0.66.4"
|
2021-08-10 18:51:08 +00:00
|
|
|
|
2022-04-20 04:54:00 +00:00
|
|
|
[dev-dependencies]
|
2022-08-08 20:15:41 +00:00
|
|
|
nu-test-support = { path="../nu-test-support", version = "0.66.4" }
|
|
|
|
nu-command = { path = "../nu-command", version = "0.66.4" }
|
2022-08-03 09:55:58 +00:00
|
|
|
rstest = {version = "0.15.0", default-features = false}
|
2022-04-20 04:54:00 +00:00
|
|
|
|
2021-08-10 18:51:08 +00:00
|
|
|
[dependencies]
|
2022-08-08 20:15:41 +00:00
|
|
|
nu-engine = { path = "../nu-engine", version = "0.66.4" }
|
|
|
|
nu-path = { path = "../nu-path", version = "0.66.4" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.66.4" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.66.4" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.66.4" }
|
2022-06-03 19:38:54 +00:00
|
|
|
nu-ansi-term = "0.46.0"
|
2022-08-08 20:15:41 +00:00
|
|
|
nu-color-config = { path = "../nu-color-config", version = "0.66.4" }
|
2022-08-15 11:00:00 +00:00
|
|
|
reedline = { version = "0.10.0", features = ["bashisms", "sqlite"]}
|
2022-03-27 13:01:04 +00:00
|
|
|
|
2022-08-13 18:21:28 +00:00
|
|
|
chrono = "0.4.21"
|
2022-08-04 19:51:02 +00:00
|
|
|
crossterm = "0.24.0"
|
|
|
|
fancy-regex = "0.10.0"
|
|
|
|
fuzzy-matcher = "0.3.7"
|
2022-07-16 02:01:38 +00:00
|
|
|
is_executable = "1.0.1"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
log = "0.4"
|
2022-08-04 19:51:02 +00:00
|
|
|
miette = { version = "5.1.0", features = ["fancy"] }
|
2022-07-29 17:50:12 +00:00
|
|
|
strip-ansi-escapes = "0.1.1"
|
2022-08-10 19:56:15 +00:00
|
|
|
sysinfo = "0.25.2"
|
2022-08-04 19:51:02 +00:00
|
|
|
thiserror = "1.0.31"
|
2022-03-16 18:17:06 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
plugin = []
|