2021-01-12 05:59:53 +01:00
|
|
|
[package]
|
2022-03-22 21:25:38 +01:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2022-04-11 20:17:06 +02:00
|
|
|
description = "Nushell's built-in commands"
|
2022-03-22 21:25:38 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2021-01-12 05:59:53 +01:00
|
|
|
name = "nu-command"
|
2023-02-11 19:59:11 +01:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-command"
|
2023-10-18 20:00:51 +02:00
|
|
|
version = "0.86.1"
|
2021-12-11 21:08:17 +01:00
|
|
|
|
2021-09-02 03:29:43 +02:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-02-12 23:22:00 +01:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-09-02 03:29:43 +02:00
|
|
|
[dependencies]
|
2023-07-24 13:16:18 +02:00
|
|
|
nu-ansi-term = "0.49.0"
|
2023-10-18 20:00:51 +02:00
|
|
|
nu-cmd-base = { path = "../nu-cmd-base", version = "0.86.1" }
|
|
|
|
nu-color-config = { path = "../nu-color-config", version = "0.86.1" }
|
|
|
|
nu-engine = { path = "../nu-engine", version = "0.86.1" }
|
|
|
|
nu-glob = { path = "../nu-glob", version = "0.86.1" }
|
|
|
|
nu-json = { path = "../nu-json", version = "0.86.1" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.86.1" }
|
|
|
|
nu-path = { path = "../nu-path", version = "0.86.1" }
|
|
|
|
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.86.1" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.86.1" }
|
|
|
|
nu-system = { path = "../nu-system", version = "0.86.1" }
|
|
|
|
nu-table = { path = "../nu-table", version = "0.86.1" }
|
|
|
|
nu-term-grid = { path = "../nu-term-grid", version = "0.86.1" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.86.1" }
|
2023-03-14 19:46:42 +01:00
|
|
|
|
2023-05-26 17:32:48 +02:00
|
|
|
alphanumeric-sort = "1.5"
|
|
|
|
base64 = "0.21"
|
2023-10-10 14:57:36 +02:00
|
|
|
byteorder = "1.5"
|
2023-09-11 11:55:21 +02:00
|
|
|
bytesize = "1.3"
|
2023-09-11 12:39:52 +02:00
|
|
|
calamine = "0.22"
|
2023-06-28 16:54:08 +02:00
|
|
|
chrono = { version = "0.4", features = ["std", "unstable-locales"], default-features = false }
|
2023-08-25 10:54:01 +02:00
|
|
|
chrono-humanize = "0.2.3"
|
2023-05-26 17:32:48 +02:00
|
|
|
chrono-tz = "0.8"
|
2023-09-04 02:22:25 +02:00
|
|
|
crossterm = "0.27"
|
2023-10-18 23:01:14 +02:00
|
|
|
csv = "1.3"
|
2023-09-26 18:00:16 +02:00
|
|
|
dialoguer = { default-features = false, features = ["fuzzy-select"], version = "0.11" }
|
2023-05-26 17:32:48 +02:00
|
|
|
digest = { default-features = false, version = "0.10" }
|
2023-08-25 10:54:01 +02:00
|
|
|
dtparse = "2.0"
|
2023-05-26 17:32:48 +02:00
|
|
|
encoding_rs = "0.8"
|
|
|
|
fancy-regex = "0.11"
|
|
|
|
filesize = "0.2"
|
|
|
|
filetime = "0.2"
|
|
|
|
fs_extra = "1.3"
|
|
|
|
htmlescape = "0.3"
|
2023-07-10 10:30:01 +02:00
|
|
|
indexmap = "2.0"
|
2023-05-26 17:32:48 +02:00
|
|
|
indicatif = "0.17"
|
2023-09-09 01:12:45 +02:00
|
|
|
itertools = "0.11"
|
2023-05-26 17:32:48 +02:00
|
|
|
log = "0.4"
|
2023-07-24 13:16:18 +02:00
|
|
|
lscolors = { version = "0.15", default-features = false, features = ["nu-ansi-term"] }
|
2023-05-26 17:32:48 +02:00
|
|
|
md5 = { package = "md-5", version = "0.10" }
|
2023-07-17 08:25:04 +02:00
|
|
|
miette = { version = "5.10", features = ["fancy-no-backtrace"] }
|
2023-05-26 17:32:48 +02:00
|
|
|
mime = "0.3"
|
|
|
|
mime_guess = "2.0"
|
2023-06-28 16:54:08 +02:00
|
|
|
native-tls = "0.2"
|
2023-09-01 00:07:41 +02:00
|
|
|
notify-debouncer-full = { version = "0.3", default-features = false }
|
2023-05-26 17:32:48 +02:00
|
|
|
num = { version = "0.4", optional = true }
|
|
|
|
num-format = { version = "0.4" }
|
|
|
|
num-traits = "0.2"
|
2023-06-19 08:16:00 +02:00
|
|
|
once_cell = "1.18"
|
2023-06-29 15:30:07 +02:00
|
|
|
open = "5.0"
|
2023-05-26 17:32:48 +02:00
|
|
|
os_pipe = "1.1"
|
|
|
|
pathdiff = "0.2"
|
2023-06-19 09:00:12 +02:00
|
|
|
percent-encoding = "2.3"
|
2023-05-26 17:32:48 +02:00
|
|
|
print-positions = "0.6"
|
2023-08-14 15:58:15 +02:00
|
|
|
quick-xml = "0.30"
|
2022-02-03 18:35:06 +01:00
|
|
|
rand = "0.8"
|
2023-09-25 13:00:05 +02:00
|
|
|
rayon = "1.8"
|
2023-09-20 19:57:58 +02:00
|
|
|
regex = "1.9.5"
|
2023-05-26 17:32:48 +02:00
|
|
|
roxmltree = "0.18"
|
|
|
|
rusqlite = { version = "0.29", features = ["bundled"], optional = true }
|
|
|
|
same-file = "1.0"
|
2023-08-21 19:04:34 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-04-26 15:15:42 +02:00
|
|
|
serde_json = "1.0"
|
2023-05-26 17:32:48 +02:00
|
|
|
serde_urlencoded = "0.7"
|
|
|
|
serde_yaml = "0.9"
|
|
|
|
sha2 = "0.10"
|
2023-05-18 18:37:20 +02:00
|
|
|
sysinfo = "0.29"
|
2023-08-04 20:50:47 +02:00
|
|
|
tabled = { version = "0.14.0", features = ["color"], default-features = false }
|
2023-09-18 07:50:17 +02:00
|
|
|
terminal_size = "0.3"
|
2023-05-26 17:32:48 +02:00
|
|
|
titlecase = "2.0"
|
2023-09-18 07:50:30 +02:00
|
|
|
toml = "0.8"
|
2023-05-26 17:32:48 +02:00
|
|
|
unicode-segmentation = "1.10"
|
2023-10-02 11:55:58 +02:00
|
|
|
ureq = { version = "2.8", default-features = false, features = ["charset", "gzip", "json", "native-tls"] }
|
2023-05-26 17:32:48 +02:00
|
|
|
url = "2.2"
|
2023-10-15 21:19:34 +02:00
|
|
|
uu_cp = "0.0.22"
|
2023-05-26 17:32:48 +02:00
|
|
|
uuid = { version = "1.3", features = ["v4"] }
|
2023-10-09 14:31:50 +02:00
|
|
|
wax = { version = "0.6" }
|
2023-05-26 17:32:48 +02:00
|
|
|
which = { version = "4.4", optional = true }
|
2023-08-07 21:40:38 +02:00
|
|
|
bracoxide = "0.1.2"
|
2023-08-25 02:21:17 +02:00
|
|
|
chardetng = "0.1.17"
|
2021-05-12 03:01:31 +02:00
|
|
|
|
2022-10-07 20:54:36 +02:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-09-04 23:05:00 +02:00
|
|
|
winreg = "0.51"
|
2022-10-07 20:54:36 +02:00
|
|
|
|
2021-01-12 05:59:53 +01:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2023-02-11 19:59:11 +01:00
|
|
|
libc = "0.2"
|
2023-05-26 17:32:48 +02:00
|
|
|
umask = "2.1"
|
2023-09-04 22:41:28 +02:00
|
|
|
nix = { version = "0.27", default-features = false, features = ["user"] }
|
2021-01-12 05:59:53 +01:00
|
|
|
|
2022-03-26 19:21:19 +01:00
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.trash]
|
|
|
|
optional = true
|
2023-10-10 22:52:45 +02:00
|
|
|
version = "3.1"
|
2022-03-26 19:21:19 +01:00
|
|
|
|
2022-06-03 18:37:27 +02:00
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2023-07-18 15:36:54 +02:00
|
|
|
features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Storage_FileSystem",
|
|
|
|
"Win32_System_SystemServices",
|
|
|
|
"Win32_Security",
|
2023-08-23 22:23:27 +02:00
|
|
|
"Win32_System_Threading",
|
2023-07-18 15:36:54 +02:00
|
|
|
]
|
2023-05-26 17:32:48 +02:00
|
|
|
version = "0.48"
|
2022-06-03 18:37:27 +02:00
|
|
|
|
2021-10-10 06:13:15 +02:00
|
|
|
[features]
|
2021-11-02 21:56:00 +01:00
|
|
|
plugin = ["nu-parser/plugin"]
|
2023-06-14 23:12:55 +02:00
|
|
|
sqlite = ["rusqlite"]
|
2023-02-11 19:59:11 +01:00
|
|
|
trash-support = ["trash"]
|
|
|
|
which-support = ["which"]
|
2021-01-12 05:59:53 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-18 20:00:51 +02:00
|
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.86.1" }
|
|
|
|
nu-test-support = { path = "../nu-test-support", version = "0.86.1" }
|
2023-06-14 23:12:55 +02:00
|
|
|
|
2023-05-26 17:32:48 +02:00
|
|
|
dirs-next = "2.0"
|
2023-09-18 07:50:08 +02:00
|
|
|
mockito = { version = "1.2", default-features = false }
|
2023-05-26 17:32:48 +02:00
|
|
|
quickcheck = "1.0"
|
|
|
|
quickcheck_macros = "1.0"
|
2023-08-08 19:11:05 +02:00
|
|
|
rstest = { version = "0.18", default-features = false }
|