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