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