2020-03-04 19:58:20 +01:00
|
|
|
[package]
|
2022-03-22 21:25:38 +01:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2022-04-11 20:17:06 +02:00
|
|
|
description = "CLI-related functionality for Nushell"
|
2022-08-14 14:21:20 +02:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli"
|
2022-03-22 21:25:38 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2020-07-05 22:12:44 +02:00
|
|
|
name = "nu-cli"
|
2023-11-20 20:31:10 +01:00
|
|
|
version = "0.87.2"
|
2021-08-10 20:51:08 +02:00
|
|
|
|
2023-02-12 23:22:00 +01:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2022-04-20 06:54:00 +02:00
|
|
|
[dev-dependencies]
|
2023-11-20 20:31:10 +01:00
|
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.87.2" }
|
|
|
|
nu-command = { path = "../nu-command", version = "0.87.2" }
|
|
|
|
nu-test-support = { path = "../nu-test-support", version = "0.87.2" }
|
2023-08-08 19:11:05 +02:00
|
|
|
rstest = { version = "0.18.1", default-features = false }
|
2022-04-20 06:54:00 +02:00
|
|
|
|
2021-08-10 20:51:08 +02:00
|
|
|
[dependencies]
|
2023-11-20 20:31:10 +01:00
|
|
|
nu-cmd-base = { path = "../nu-cmd-base", version = "0.87.2" }
|
|
|
|
nu-engine = { path = "../nu-engine", version = "0.87.2" }
|
|
|
|
nu-path = { path = "../nu-path", version = "0.87.2" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.87.2" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.87.2" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.87.2" }
|
|
|
|
nu-color-config = { path = "../nu-color-config", version = "0.87.2" }
|
2023-07-24 13:16:18 +02:00
|
|
|
nu-ansi-term = "0.49.0"
|
2023-11-14 20:47:25 +01:00
|
|
|
reedline = { version = "0.26.0", features = ["bashisms", "sqlite"] }
|
2022-03-27 15:01:04 +02:00
|
|
|
|
2023-05-26 17:32:48 +02:00
|
|
|
chrono = { default-features = false, features = ["std"], version = "0.4" }
|
2023-09-04 02:22:25 +02:00
|
|
|
crossterm = "0.27"
|
2023-05-26 17:32:48 +02:00
|
|
|
fancy-regex = "0.11"
|
|
|
|
fuzzy-matcher = "0.3"
|
|
|
|
is_executable = "1.0"
|
2022-07-16 04:01:38 +02:00
|
|
|
log = "0.4"
|
2023-07-17 08:25:04 +02:00
|
|
|
miette = { version = "5.10", features = ["fancy-no-backtrace"] }
|
2023-06-19 08:16:00 +02:00
|
|
|
once_cell = "1.18"
|
2022-09-13 14:36:53 +02:00
|
|
|
percent-encoding = "2"
|
2023-10-02 19:44:51 +02:00
|
|
|
pathdiff = "0.2"
|
2023-05-18 18:37:20 +02:00
|
|
|
sysinfo = "0.29"
|
2023-05-26 17:32:48 +02:00
|
|
|
unicode-segmentation = "1.10"
|
2023-11-20 20:38:41 +01:00
|
|
|
uuid = { version = "1.6.0", features = ["v4"] }
|
2023-11-25 16:42:05 +01:00
|
|
|
which = "5.0.0"
|
2022-03-16 19:17:06 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
plugin = []
|