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"
|
2024-04-12 15:00:43 +02:00
|
|
|
version = "0.92.3"
|
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]
|
2024-04-12 15:00:43 +02:00
|
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.92.3" }
|
|
|
|
nu-command = { path = "../nu-command", version = "0.92.3" }
|
|
|
|
nu-test-support = { path = "../nu-test-support", version = "0.92.3" }
|
2024-03-07 23:40:31 +01:00
|
|
|
rstest = { workspace = true, default-features = false }
|
2022-04-20 06:54:00 +02:00
|
|
|
|
2021-08-10 20:51:08 +02:00
|
|
|
[dependencies]
|
2024-04-12 15:00:43 +02:00
|
|
|
nu-cmd-base = { path = "../nu-cmd-base", version = "0.92.3" }
|
|
|
|
nu-engine = { path = "../nu-engine", version = "0.92.3" }
|
|
|
|
nu-path = { path = "../nu-path", version = "0.92.3" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.92.3" }
|
2024-04-21 14:36:26 +02:00
|
|
|
nu-plugin = { path = "../nu-plugin", version = "0.92.3", optional = true }
|
2024-04-12 15:00:43 +02:00
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.92.3" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.92.3" }
|
|
|
|
nu-color-config = { path = "../nu-color-config", version = "0.92.3" }
|
2024-03-07 23:40:31 +01:00
|
|
|
nu-ansi-term = { workspace = true }
|
|
|
|
reedline = { workspace = true, features = ["bashisms", "sqlite"] }
|
2022-03-27 15:01:04 +02:00
|
|
|
|
2024-03-07 23:40:31 +01:00
|
|
|
chrono = { default-features = false, features = ["std"], workspace = true }
|
|
|
|
crossterm = { workspace = true }
|
|
|
|
fancy-regex = { workspace = true }
|
2024-03-24 00:46:02 +01:00
|
|
|
fuzzy-matcher = { workspace = true }
|
|
|
|
is_executable = { workspace = true }
|
2024-03-07 23:40:31 +01:00
|
|
|
log = { workspace = true }
|
|
|
|
miette = { workspace = true, features = ["fancy-no-backtrace"] }
|
2024-03-24 00:46:02 +01:00
|
|
|
lscolors = { workspace = true, default-features = false, features = ["nu-ansi-term"] }
|
2024-03-07 23:40:31 +01:00
|
|
|
once_cell = { workspace = true }
|
|
|
|
percent-encoding = { workspace = true }
|
|
|
|
pathdiff = { workspace = true }
|
|
|
|
sysinfo = { workspace = true }
|
|
|
|
unicode-segmentation = { workspace = true }
|
|
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
|
|
which = { workspace = true }
|
2022-03-16 19:17:06 +01:00
|
|
|
|
|
|
|
[features]
|
2024-04-21 14:36:26 +02:00
|
|
|
plugin = ["nu-plugin"]
|
2024-03-15 14:59:21 +01:00
|
|
|
system-clipboard = ["reedline/system_clipboard"]
|