forked from extern/nushell
e06df124ca
* upgrade dependencies num-bigint 0.3.1 -> 0.4.3 bigdecimal-rs 0.2.1 -> bigdecimal 0.3.0 s3hander 0.7 -> 0.7.5 bat 0.18 -> 0.18, default-features = false * upgrade arboard 1.1.0 -> 2.0.1 * in polars use comfy-table instead of prettytable-rs the last release of prettytable-rs was `0.8.0 Sep 27, 2018` and it uses `term 0.5` as a dependency * upgrade dependencies * upgrade trash -> 2.0.1 Co-authored-by: ahkrr <alexhk@protonmail.com>
44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
authors = ["The Nu Project Contributors"]
|
|
description = "CLI for nushell"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
name = "nu-cli"
|
|
version = "0.40.0"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
nu-completion = { version = "0.40.0", path="../nu-completion" }
|
|
nu-command = { version = "0.40.0", path="../nu-command" }
|
|
nu-data = { version = "0.40.0", path="../nu-data" }
|
|
nu-engine = { version = "0.40.0", path="../nu-engine" }
|
|
nu-errors = { version = "0.40.0", path="../nu-errors" }
|
|
nu-parser = { version = "0.40.0", path="../nu-parser" }
|
|
nu-protocol = { version = "0.40.0", path="../nu-protocol" }
|
|
nu-source = { version = "0.40.0", path="../nu-source" }
|
|
nu-stream = { version = "0.40.0", path="../nu-stream" }
|
|
nu-ansi-term = { version = "0.40.0", path="../nu-ansi-term" }
|
|
nu-path = { version = "0.40.0", path="../nu-path" }
|
|
|
|
indexmap ="1.6.1"
|
|
log = "0.4.14"
|
|
pretty_env_logger = "0.4.0"
|
|
strip-ansi-escapes = "0.1.0"
|
|
rustyline = { version="9.0.0", optional=true }
|
|
ctrlc = { version="3.1.7", optional=true }
|
|
shadow-rs = { version = "0.8.1", 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.8.1"
|
|
|
|
[features]
|
|
default = ["shadow-rs"]
|
|
rustyline-support = ["rustyline", "nu-engine/rustyline-support"]
|
|
stable = []
|