nushell/crates/nu-cli/Cargo.toml

116 lines
2.8 KiB
TOML
Raw Normal View History

[package]
name = "nu-cli"
2020-06-30 20:25:09 +02:00
version = "0.16.0"
authors = ["The Nu Project Contributors"]
description = "CLI for nushell"
edition = "2018"
2020-03-10 20:08:13 +01:00
license = "MIT"
[lib]
doctest = false
[dependencies]
2020-06-30 20:25:09 +02:00
nu-source = { version = "0.16.0", path = "../nu-source" }
nu-plugin = { version = "0.16.0", path = "../nu-plugin" }
nu-protocol = { version = "0.16.0", path = "../nu-protocol" }
nu-errors = { version = "0.16.0", path = "../nu-errors" }
nu-parser = { version = "0.16.0", path = "../nu-parser" }
nu-value-ext = { version = "0.16.0", path = "../nu-value-ext" }
nu-test-support = { version = "0.16.0", path = "../nu-test-support" }
nu-table = {version = "0.16.0", path = "../nu-table"}
ansi_term = "0.12.1"
app_dirs = "1.2.1"
async-recursion = "0.3.1"
2020-06-27 09:54:31 +02:00
async-trait = "0.1.36"
directories = "2.0.2"
2020-06-27 09:54:31 +02:00
base64 = "0.12.3"
2020-05-17 00:34:10 +02:00
bigdecimal = { version = "0.1.2", features = ["serde"] }
bson = { version = "0.14.1", features = ["decimal128"] }
2020-05-30 22:54:47 +02:00
byte-unit = "3.1.3"
2020-06-27 09:54:31 +02:00
bytes = "0.5.5"
calamine = "0.16"
cfg-if = "0.1"
2020-03-08 20:18:44 +01:00
chrono = { version = "0.4.11", features = ["serde"] }
2020-05-17 00:34:10 +02:00
clap = "2.33.1"
csv = "1.1"
2020-03-08 20:18:44 +01:00
ctrlc = "3.1.4"
derive-new = "0.5.8"
dirs = "2.0.2"
2020-06-27 09:54:31 +02:00
dunce = "1.0.1"
eml-parser = "0.1.0"
2020-04-07 09:51:17 +02:00
filesize = "0.2.0"
futures = { version = "0.3", features = ["compat", "io-compat"] }
2020-05-17 00:34:10 +02:00
futures-util = "0.3.5"
futures_codec = "0.4"
2020-05-17 00:34:10 +02:00
getset = "0.1.1"
2020-05-30 22:54:47 +02:00
git2 = { version = "0.13.6", default_features = false }
glob = "0.3.0"
hex = "0.4"
htmlescape = "0.3.1"
ical = "0.6.*"
ichwh = "0.3.4"
2020-06-27 09:54:31 +02:00
indexmap = { version = "1.4.0", features = ["serde-1"] }
2020-03-08 20:18:44 +01:00
itertools = "0.9.0"
2020-06-27 09:54:31 +02:00
codespan-reporting = "0.9.5"
log = "0.4.8"
meval = "0.2"
2020-03-08 20:18:44 +01:00
natural = "0.5.0"
num-bigint = { version = "0.2.6", features = ["serde"] }
num-traits = "0.2.11"
2020-06-27 09:54:31 +02:00
parking_lot = "0.11.0"
2020-05-17 00:34:10 +02:00
pin-utils = "0.1.0"
pretty-hex = "0.1.1"
pretty_env_logger = "0.4.0"
ptree = {version = "0.2" }
query_interface = "0.3.5"
rand = "0.7"
regex = "1"
2020-06-27 09:54:31 +02:00
roxmltree = "0.13.0"
2020-06-04 19:50:12 +02:00
rustyline = "6.2.0"
2020-06-27 09:54:31 +02:00
serde = { version = "1.0.114", features = ["derive"] }
serde-hjson = "0.9.1"
2020-06-27 09:54:31 +02:00
serde_bytes = "0.11.5"
serde_ini = "0.2.0"
2020-06-27 09:54:31 +02:00
serde_json = "1.0.55"
serde_urlencoded = "0.6.1"
serde_yaml = "0.8"
2020-03-08 20:18:44 +01:00
shellexpand = "2.0.0"
strip-ansi-escapes = "0.1.0"
tempfile = "3.1.0"
term = "0.5.2"
termcolor = "1.1.0"
2020-06-27 09:54:31 +02:00
term_size = "0.3.2"
toml = "0.5.6"
2020-06-27 09:54:31 +02:00
typetag = "0.1.5"
2020-05-30 22:54:47 +02:00
umask = "1.0.0"
2020-06-27 09:54:31 +02:00
unicode-xid = "0.2.1"
uuid_crate = { package = "uuid", version = "0.8.1", features = ["v4"] }
which = "4.0.1"
2020-05-17 00:34:10 +02:00
trash = { version = "1.0.1", optional = true }
clipboard = { version = "0.5", optional = true }
2020-06-27 09:54:31 +02:00
starship = "0.43.0"
rayon = "1.3.1"
encoding_rs = "0.8.23"
[target.'cfg(unix)'.dependencies]
2020-04-07 09:51:17 +02:00
users = "0.10.0"
[dependencies.rusqlite]
2020-05-17 00:34:10 +02:00
version = "0.23.1"
features = ["bundled", "blob"]
[build-dependencies]
2020-06-30 20:25:09 +02:00
nu-build = { version = "0.16.0", path = "../nu-build" }
[dev-dependencies]
quickcheck = "0.9"
quickcheck_macros = "0.9"
[features]
stable = []
# starship-prompt = ["starship"]
clipboard-cli = ["clipboard"]
trash-support = ["trash"]