summaryrefslogtreecommitdiff
path: root/crates/nu-cli/Cargo.toml
blob: ee1e0fe9b1c49f6c5487a44f55f5e161ae8e9434 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
authors = ["The Nu Project Contributors"]
description = "CLI for nushell"
edition = "2018"
license = "MIT"
name = "nu-cli"
version = "0.35.0"
build = "build.rs"

[lib]
doctest = false

[dependencies]
nu-completion = { version = "0.35.0", path="../nu-completion" }
nu-command = { version = "0.35.0", path="../nu-command" }
nu-data = { version = "0.35.0", path="../nu-data" }
nu-engine = { version = "0.35.0", path="../nu-engine" }
nu-errors = { version = "0.35.0", path="../nu-errors" }
nu-parser = { version = "0.35.0", path="../nu-parser" }
nu-protocol = { version = "0.35.0", path="../nu-protocol" }
nu-source = { version = "0.35.0", path="../nu-source" }
nu-stream = { version = "0.35.0", path="../nu-stream" }
nu-ansi-term = { version = "0.35.0", path="../nu-ansi-term" }

indexmap ="1.6.1"
log = "0.4.14"
pretty_env_logger = "0.4.0"
strip-ansi-escapes = "0.1.0"
rustyline = { version="8.1.0", optional=true }
ctrlc = { version="3.1.7", optional=true }
shadow-rs = { version="0.6", default-features=false, optional=true }
serde = { version="1.0.123", features=["derive"] }
serde_yaml = "0.8.16"
lazy_static = "1.4.0"

[build-dependencies]
shadow-rs = "0.6"

[features]
default = ["shadow-rs"]
rustyline-support = ["rustyline", "nu-engine/rustyline-support"]
stable = []