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"
|
2023-06-07 13:06:42 +00:00
|
|
|
version = "0.81.1"
|
2021-08-10 18:51:08 +00:00
|
|
|
|
2023-02-12 22:22:00 +00:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2022-04-20 04:54:00 +00:00
|
|
|
[dev-dependencies]
|
2023-06-07 13:06:42 +00:00
|
|
|
nu-test-support = { path = "../nu-test-support", version = "0.81.1" }
|
2023-03-20 17:27:29 +00:00
|
|
|
rstest = { version = "0.17.0", default-features = false }
|
2022-04-20 04:54:00 +00:00
|
|
|
|
2021-08-10 18:51:08 +00:00
|
|
|
[dependencies]
|
2023-06-07 13:06:42 +00:00
|
|
|
nu-command = { path = "../nu-command", version = "0.81.1" }
|
|
|
|
nu-engine = { path = "../nu-engine", version = "0.81.1" }
|
|
|
|
nu-path = { path = "../nu-path", version = "0.81.1" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.81.1" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.81.1" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.81.1" }
|
|
|
|
nu-color-config = { path = "../nu-color-config", version = "0.81.1" }
|
2023-03-14 18:46:42 +00:00
|
|
|
nu-ansi-term = "0.47.0"
|
2023-06-06 11:16:18 +00:00
|
|
|
reedline = { version = "0.20.0", features = ["bashisms", "sqlite"]}
|
2022-03-27 13:01:04 +00:00
|
|
|
|
2023-05-26 15:32:48 +00:00
|
|
|
atty = "0.2"
|
|
|
|
chrono = { default-features = false, features = ["std"], version = "0.4" }
|
2023-04-14 20:14:57 +00:00
|
|
|
crossterm = "0.26"
|
2023-05-26 15:32:48 +00:00
|
|
|
fancy-regex = "0.11"
|
|
|
|
fuzzy-matcher = "0.3"
|
|
|
|
is_executable = "1.0"
|
2022-07-16 02:01:38 +00:00
|
|
|
log = "0.4"
|
2023-05-26 15:32:48 +00:00
|
|
|
miette = { version = "5.9", features = ["fancy-no-backtrace"] }
|
|
|
|
once_cell = "1.17"
|
2022-09-13 12:36:53 +00:00
|
|
|
percent-encoding = "2"
|
2023-05-18 16:37:20 +00:00
|
|
|
sysinfo = "0.29"
|
2023-05-26 15:32:48 +00:00
|
|
|
unicode-segmentation = "1.10"
|
2023-06-10 16:41:58 +00:00
|
|
|
ahash = "0.8.3"
|
2022-03-16 18:17:06 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
plugin = []
|