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"
|
2022-12-21 19:35:50 +01:00
|
|
|
version = "0.73.1"
|
2021-08-10 20:51:08 +02:00
|
|
|
|
2022-04-20 06:54:00 +02:00
|
|
|
[dev-dependencies]
|
2022-12-21 19:35:50 +01:00
|
|
|
nu-test-support = { path="../nu-test-support", version = "0.73.1" }
|
|
|
|
nu-command = { path = "../nu-command", version = "0.73.1" }
|
2022-08-03 11:55:58 +02:00
|
|
|
rstest = {version = "0.15.0", default-features = false}
|
2022-04-20 06:54:00 +02:00
|
|
|
|
2021-08-10 20:51:08 +02:00
|
|
|
[dependencies]
|
2022-12-21 19:35:50 +01:00
|
|
|
nu-engine = { path = "../nu-engine", version = "0.73.1" }
|
|
|
|
nu-path = { path = "../nu-path", version = "0.73.1" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.73.1" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.73.1" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.73.1" }
|
2022-06-03 21:38:54 +02:00
|
|
|
nu-ansi-term = "0.46.0"
|
2022-12-21 19:35:50 +01:00
|
|
|
nu-color-config = { path = "../nu-color-config", version = "0.73.1" }
|
2022-11-07 21:31:15 +01:00
|
|
|
reedline = { version = "0.14.0", features = ["bashisms", "sqlite"]}
|
2022-03-27 15:01:04 +02:00
|
|
|
|
2022-09-05 13:33:54 +02:00
|
|
|
atty = "0.2.14"
|
2022-11-26 19:19:02 +01:00
|
|
|
chrono = { default-features = false, features = ["std"], version = "0.4.23" }
|
2022-08-04 21:51:02 +02:00
|
|
|
crossterm = "0.24.0"
|
|
|
|
fancy-regex = "0.10.0"
|
|
|
|
fuzzy-matcher = "0.3.7"
|
2022-07-16 04:01:38 +02:00
|
|
|
is_executable = "1.0.1"
|
2022-12-17 19:30:04 +01:00
|
|
|
once_cell = "1.16.0"
|
2022-07-16 04:01:38 +02:00
|
|
|
log = "0.4"
|
2022-10-24 21:42:32 +02:00
|
|
|
miette = { version = "5.1.0", features = ["fancy-no-backtrace"] }
|
2022-09-13 14:36:53 +02:00
|
|
|
percent-encoding = "2"
|
2022-09-15 12:47:40 +02:00
|
|
|
sysinfo = "0.26.2"
|
2022-08-04 21:51:02 +02:00
|
|
|
thiserror = "1.0.31"
|
2022-03-16 19:17:06 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
plugin = []
|