2020-03-04 18:58:20 +00:00
|
|
|
[package]
|
2020-04-06 07:16:14 +00:00
|
|
|
authors = ["The Nu Project Contributors"]
|
2021-01-05 05:10:24 +00:00
|
|
|
build = "build.rs"
|
2020-03-04 18:58:20 +00:00
|
|
|
description = "CLI for nushell"
|
|
|
|
edition = "2018"
|
2020-03-10 19:08:13 +00:00
|
|
|
license = "MIT"
|
2020-07-05 20:12:44 +00:00
|
|
|
name = "nu-cli"
|
2021-03-09 10:40:17 +00:00
|
|
|
version = "0.28.0"
|
2020-03-04 18:58:20 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-09 10:40:17 +00:00
|
|
|
nu-command = { version = "0.28.0", path = "../nu-command" }
|
|
|
|
nu-data = { version = "0.28.0", path = "../nu-data" }
|
|
|
|
nu-engine = { version = "0.28.0", path = "../nu-engine" }
|
|
|
|
nu-errors = { version = "0.28.0", path = "../nu-errors" }
|
|
|
|
nu-json = { version = "0.28.0", path = "../nu-json" }
|
|
|
|
nu-parser = { version = "0.28.0", path = "../nu-parser" }
|
|
|
|
nu-plugin = { version = "0.28.0", path = "../nu-plugin" }
|
|
|
|
nu-protocol = { version = "0.28.0", path = "../nu-protocol" }
|
|
|
|
nu-source = { version = "0.28.0", path = "../nu-source" }
|
|
|
|
nu-stream = { version = "0.28.0", path = "../nu-stream" }
|
|
|
|
nu-table = { version = "0.28.0", path = "../nu-table" }
|
|
|
|
nu-test-support = { version = "0.28.0", path = "../nu-test-support" }
|
|
|
|
nu-value-ext = { version = "0.28.0", path = "../nu-value-ext" }
|
|
|
|
nu-ansi-term = { version = "0.28.0", path = "../nu-ansi-term" }
|
2020-03-04 18:58:20 +00:00
|
|
|
|
2021-01-05 05:10:24 +00:00
|
|
|
Inflector = "0.11"
|
2021-01-15 18:06:29 +00:00
|
|
|
arboard = { version = "1.1.0", optional = true }
|
2021-02-05 20:54:54 +00:00
|
|
|
async-recursion = "0.3.2"
|
|
|
|
async-trait = "0.1.42"
|
2020-11-30 17:47:35 +00:00
|
|
|
base64 = "0.13.0"
|
2021-01-15 18:06:29 +00:00
|
|
|
bigdecimal = { version = "0.2.0", features = ["serde"] }
|
2020-09-08 22:35:45 +00:00
|
|
|
byte-unit = "4.0.9"
|
2021-02-05 20:54:54 +00:00
|
|
|
bytes = "1.0.1"
|
|
|
|
calamine = "0.17.0"
|
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
2020-12-12 18:18:03 +00:00
|
|
|
chrono-tz = "0.5.3"
|
2020-09-08 22:35:45 +00:00
|
|
|
clap = "2.33.3"
|
2021-01-07 00:38:22 +00:00
|
|
|
codespan-reporting = "0.11.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
csv = "1.1.5"
|
|
|
|
ctrlc = { version = "3.1.7", optional = true }
|
2020-03-04 18:58:20 +00:00
|
|
|
derive-new = "0.5.8"
|
2021-01-19 20:24:27 +00:00
|
|
|
directories-next = { version = "2.0.0", optional = true }
|
|
|
|
dirs-next = { version = "2.0.0", optional = true }
|
2020-10-06 17:27:06 +00:00
|
|
|
dtparse = "1.2.0"
|
2020-06-27 07:54:31 +00:00
|
|
|
dunce = "1.0.1"
|
2020-04-26 04:26:35 +00:00
|
|
|
eml-parser = "0.1.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
encoding_rs = "0.8.28"
|
2020-04-07 07:51:17 +00:00
|
|
|
filesize = "0.2.0"
|
2020-09-03 23:44:53 +00:00
|
|
|
fs_extra = "1.2.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
futures = { version = "0.3.12", features = ["compat", "io-compat"] }
|
|
|
|
futures-util = "0.3.12"
|
2021-01-05 05:10:24 +00:00
|
|
|
futures_codec = "0.4.1"
|
2020-05-16 22:34:10 +00:00
|
|
|
getset = "0.1.1"
|
2020-03-04 18:58:20 +00:00
|
|
|
glob = "0.3.0"
|
2020-03-15 03:04:44 +00:00
|
|
|
htmlescape = "0.3.1"
|
2021-01-07 00:38:22 +00:00
|
|
|
ical = "0.7.0"
|
2021-01-15 18:06:29 +00:00
|
|
|
ichwh = { version = "0.3.4", optional = true }
|
2021-02-05 20:54:54 +00:00
|
|
|
indexmap = { version = "1.6.1", features = ["serde-1"] }
|
2021-01-07 00:38:22 +00:00
|
|
|
itertools = "0.10.0"
|
2020-12-01 19:57:49 +00:00
|
|
|
lazy_static = "1.*"
|
2021-02-05 20:54:54 +00:00
|
|
|
log = "0.4.14"
|
2020-09-08 22:35:45 +00:00
|
|
|
meval = "0.2.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
num-bigint = { version = "0.3.1", features = ["serde"] }
|
2021-01-15 18:06:29 +00:00
|
|
|
num-format = { version = "0.4.0", features = ["with-num-bigint"] }
|
2021-02-05 20:54:54 +00:00
|
|
|
num-traits = "0.2.14"
|
|
|
|
parking_lot = "0.11.1"
|
2020-05-16 22:34:10 +00:00
|
|
|
pin-utils = "0.1.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
pretty-hex = "0.2.1"
|
|
|
|
ptree = { version = "0.3.1", optional = true }
|
2020-03-04 18:58:20 +00:00
|
|
|
query_interface = "0.3.5"
|
2021-02-05 20:54:54 +00:00
|
|
|
quick-xml = "0.21.0"
|
|
|
|
rand = "0.8.3"
|
|
|
|
rayon = "1.5.0"
|
|
|
|
regex = "1.4.3"
|
2021-01-07 00:38:22 +00:00
|
|
|
roxmltree = "0.14.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
rust-embed = "5.9.0"
|
2021-03-14 02:13:31 +00:00
|
|
|
rustyline = { version = "8.0.0", optional = true }
|
2021-02-05 20:54:54 +00:00
|
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
2020-06-27 07:54:31 +00:00
|
|
|
serde_bytes = "0.11.5"
|
2020-03-04 18:58:20 +00:00
|
|
|
serde_ini = "0.2.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
serde_json = "1.0.61"
|
2020-09-08 22:35:45 +00:00
|
|
|
serde_urlencoded = "0.7.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
serde_yaml = "0.8.16"
|
|
|
|
sha2 = "0.9.3"
|
|
|
|
shellexpand = "2.1.0"
|
2020-03-04 18:58:20 +00:00
|
|
|
strip-ansi-escapes = "0.1.0"
|
2020-10-12 13:03:00 +00:00
|
|
|
sxd-document = "0.3.2"
|
2020-10-13 17:19:09 +00:00
|
|
|
sxd-xpath = "0.4.2"
|
2021-02-05 20:54:54 +00:00
|
|
|
tempfile = "3.2.0"
|
|
|
|
term = { version = "0.7.0", optional = true }
|
2020-06-27 07:54:31 +00:00
|
|
|
term_size = "0.3.2"
|
2021-02-05 20:54:54 +00:00
|
|
|
termcolor = "1.1.2"
|
|
|
|
titlecase = "1.1.0"
|
|
|
|
toml = "0.5.8"
|
|
|
|
trash = { version = "1.3.0", optional = true }
|
|
|
|
unicode-segmentation = "1.7.1"
|
2020-12-01 19:57:49 +00:00
|
|
|
url = "2.1.1"
|
2021-02-05 20:54:54 +00:00
|
|
|
uuid_crate = { package = "uuid", version = "0.8.2", features = ["v4"], optional = true }
|
2021-01-15 18:06:29 +00:00
|
|
|
which = { version = "4.0.2", optional = true }
|
2021-02-05 20:54:54 +00:00
|
|
|
zip = { version = "0.5.9", optional = true }
|
2021-01-15 18:06:29 +00:00
|
|
|
shadow-rs = { version = "0.5", default-features = false, optional = true }
|
2020-03-04 20:31:12 +00:00
|
|
|
|
2020-03-04 18:58:20 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2020-09-09 18:57:51 +00:00
|
|
|
umask = "1.0.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
users = "0.11.0"
|
2020-03-04 18:58:20 +00:00
|
|
|
|
2020-07-12 03:57:39 +00:00
|
|
|
# TODO this will be possible with new dependency resolver
|
|
|
|
# (currently on nightly behind -Zfeatures=itarget):
|
|
|
|
# https://github.com/rust-lang/cargo/issues/7914
|
|
|
|
#[target.'cfg(not(windows))'.dependencies]
|
|
|
|
#num-format = {version = "0.4", features = ["with-system-locale"]}
|
|
|
|
|
2020-03-04 18:58:20 +00:00
|
|
|
[dependencies.rusqlite]
|
|
|
|
features = ["bundled", "blob"]
|
2020-07-18 01:59:23 +00:00
|
|
|
optional = true
|
2020-12-18 07:53:49 +00:00
|
|
|
version = "0.24.2"
|
2020-03-04 18:58:20 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2020-12-23 16:56:05 +00:00
|
|
|
shadow-rs = "0.5"
|
2020-08-08 05:39:34 +00:00
|
|
|
|
2020-04-11 19:05:59 +00:00
|
|
|
[dev-dependencies]
|
2021-02-05 20:54:54 +00:00
|
|
|
quickcheck = "1.0.3"
|
|
|
|
quickcheck_macros = "1.0.0"
|
2020-04-11 19:05:59 +00:00
|
|
|
|
2020-03-04 20:31:12 +00:00
|
|
|
[features]
|
2021-01-15 18:06:29 +00:00
|
|
|
default = ["shadow-rs"]
|
2020-12-30 17:16:02 +00:00
|
|
|
clipboard-cli = ["arboard"]
|
2021-01-13 17:31:47 +00:00
|
|
|
rustyline-support = ["rustyline", "nu-engine/rustyline-support"]
|
2020-07-18 01:59:23 +00:00
|
|
|
stable = []
|
2020-04-12 19:01:44 +00:00
|
|
|
trash-support = ["trash"]
|
2021-01-19 20:24:27 +00:00
|
|
|
dirs = ["dirs-next"]
|
|
|
|
directories = ["directories-next"]
|