mirror of
https://github.com/nushell/nushell.git
synced 2025-06-23 19:31:24 +02:00
Bumps [data-encoding](https://github.com/ia0/data-encoding) from 2.7.0 to 2.8.0. <details> <summary>Commits</summary> <ul> <li><a href="284f84626a
"><code>284f846</code></a> Release 2.8.0 (<a href="https://redirect.github.com/ia0/data-encoding/issues/134">#134</a>)</li> <li><a href="b6f9f3b9d6
"><code>b6f9f3b</code></a> Remove MSRV for unpublished crates (<a href="https://redirect.github.com/ia0/data-encoding/issues/133">#133</a>)</li> <li><a href="c060e6873c
"><code>c060e68</code></a> Delete outdated cargo cache to force save (<a href="https://redirect.github.com/ia0/data-encoding/issues/132">#132</a>)</li> <li><a href="d62d722222
"><code>d62d722</code></a> Remove top-level Makefile (<a href="https://redirect.github.com/ia0/data-encoding/issues/131">#131</a>)</li> <li><a href="5e86676a34
"><code>5e86676</code></a> Improve CI workflow (<a href="https://redirect.github.com/ia0/data-encoding/issues/130">#130</a>)</li> <li><a href="8a9537cf64
"><code>8a9537c</code></a> Improve fuzzing (<a href="https://redirect.github.com/ia0/data-encoding/issues/129">#129</a>)</li> <li><a href="27a68f43cd
"><code>27a68f4</code></a> Add missing safety documentation and assertions for testing and fuzzing (<a href="https://redirect.github.com/ia0/data-encoding/issues/128">#128</a>)</li> <li><a href="06b0d89b11
"><code>06b0d89</code></a> Add BASE32_NOPAD_NOCASE and BASE32_NOPAD_VISUAL (<a href="https://redirect.github.com/ia0/data-encoding/issues/127">#127</a>)</li> <li>See full diff in <a href="https://github.com/ia0/data-encoding/compare/v2.7.0...v2.8.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
203 lines
6.8 KiB
TOML
203 lines
6.8 KiB
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "Nushell's built-in commands"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-command"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-command"
|
|
version = "0.102.1"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
nu-cmd-base = { path = "../nu-cmd-base", version = "0.102.1" }
|
|
nu-color-config = { path = "../nu-color-config", version = "0.102.1" }
|
|
nu-engine = { path = "../nu-engine", version = "0.102.1", default-features = false }
|
|
nu-glob = { path = "../nu-glob", version = "0.102.1" }
|
|
nu-json = { path = "../nu-json", version = "0.102.1" }
|
|
nu-parser = { path = "../nu-parser", version = "0.102.1" }
|
|
nu-path = { path = "../nu-path", version = "0.102.1" }
|
|
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.102.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.102.1", default-features = false }
|
|
nu-system = { path = "../nu-system", version = "0.102.1" }
|
|
nu-table = { path = "../nu-table", version = "0.102.1" }
|
|
nu-term-grid = { path = "../nu-term-grid", version = "0.102.1" }
|
|
nu-utils = { path = "../nu-utils", version = "0.102.1", default-features = false }
|
|
nu-ansi-term = { workspace = true }
|
|
nuon = { path = "../nuon", version = "0.102.1" }
|
|
|
|
alphanumeric-sort = { workspace = true }
|
|
base64 = { workspace = true }
|
|
bracoxide = { workspace = true }
|
|
brotli = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
bytesize = { workspace = true }
|
|
calamine = { workspace = true, features = ["dates"] }
|
|
chardetng = { workspace = true }
|
|
chrono = { workspace = true, features = ["std", "unstable-locales", "clock"], default-features = false }
|
|
chrono-humanize = { workspace = true }
|
|
chrono-tz = { workspace = true }
|
|
crossterm = { workspace = true, optional = true }
|
|
csv = { workspace = true }
|
|
devicons = { workspace = true }
|
|
dialoguer = { workspace = true, default-features = false, features = ["fuzzy-select"] }
|
|
digest = { workspace = true, default-features = false }
|
|
dtparse = { workspace = true }
|
|
encoding_rs = { workspace = true }
|
|
fancy-regex = { workspace = true }
|
|
filesize = { workspace = true }
|
|
filetime = { workspace = true }
|
|
human-date-parser = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
indicatif = { workspace = true }
|
|
itertools = { workspace = true }
|
|
log = { workspace = true }
|
|
lscolors = { workspace = true, default-features = false, features = ["nu-ansi-term"] }
|
|
md5 = { workspace = true }
|
|
mime = { workspace = true }
|
|
mime_guess = { workspace = true }
|
|
multipart-rs = { workspace = true, optional = true }
|
|
native-tls = { workspace = true, optional = true }
|
|
notify-debouncer-full = { workspace = true, default-features = false, optional = true }
|
|
num-format = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
oem_cp = { workspace = true }
|
|
open = { workspace = true, optional = true }
|
|
os_pipe = { workspace = true, optional = true }
|
|
pathdiff = { workspace = true }
|
|
percent-encoding = { workspace = true }
|
|
print-positions = { workspace = true }
|
|
quick-xml = { workspace = true }
|
|
rand = { workspace = true, optional = true }
|
|
getrandom = { workspace = true, optional = true }
|
|
rayon = { workspace = true }
|
|
roxmltree = { workspace = true }
|
|
rusqlite = { workspace = true, features = ["bundled", "backup", "chrono"], optional = true }
|
|
rmp = { workspace = true }
|
|
scopeguard = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true, features = ["preserve_order"] }
|
|
serde_urlencoded = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
sysinfo = { workspace = true }
|
|
tabled = { workspace = true, features = ["ansi"], default-features = false }
|
|
titlecase = { workspace = true }
|
|
toml = { workspace = true, features = ["preserve_order"] }
|
|
unicode-segmentation = { workspace = true }
|
|
update-informer = { workspace = true, optional = true }
|
|
ureq = { workspace = true, default-features = false, features = ["charset", "gzip", "json", "native-tls"], optional = true }
|
|
url = { workspace = true }
|
|
uu_cp = { workspace = true, optional = true }
|
|
uu_mkdir = { workspace = true, optional = true }
|
|
uu_mktemp = { workspace = true, optional = true }
|
|
uu_mv = { workspace = true, optional = true }
|
|
uu_touch = { workspace = true, optional = true }
|
|
uu_uname = { workspace = true, optional = true }
|
|
uu_whoami = { workspace = true, optional = true }
|
|
uuid = { workspace = true, features = ["v4"], optional = true }
|
|
v_htmlescape = { workspace = true }
|
|
wax = { workspace = true }
|
|
which = { workspace = true, optional = true }
|
|
unicode-width = { workspace = true }
|
|
data-encoding = { version = "2.8.0", features = ["alloc"] }
|
|
web-time = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winreg = { workspace = true }
|
|
|
|
[target.'cfg(all(not(windows), not(target_arch = "wasm32")))'.dependencies]
|
|
uucore = { workspace = true, features = ["mode"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
umask = { workspace = true }
|
|
nix = { workspace = true, default-features = false, features = ["user", "resource", "pthread"] }
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
|
|
procfs = { workspace = true }
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.trash]
|
|
optional = true
|
|
workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_Environment",
|
|
"Win32_System_SystemServices",
|
|
"Win32_Security",
|
|
"Win32_System_Threading",
|
|
]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = ["os"]
|
|
os = [
|
|
# include other features
|
|
"js",
|
|
"network",
|
|
"nu-protocol/os",
|
|
"nu-utils/os",
|
|
|
|
# os-dependant dependencies
|
|
"crossterm",
|
|
"notify-debouncer-full",
|
|
"open",
|
|
"os_pipe",
|
|
"uu_cp",
|
|
"uu_mkdir",
|
|
"uu_mktemp",
|
|
"uu_mv",
|
|
"uu_touch",
|
|
"uu_uname",
|
|
"uu_whoami",
|
|
"which",
|
|
]
|
|
|
|
# The dependencies listed below need 'getrandom'.
|
|
# They work with JS (usually with wasm-bindgen) or regular OS support.
|
|
# Hence they are also put under the 'os' feature to avoid repetition.
|
|
js = [
|
|
"getrandom",
|
|
"getrandom/js",
|
|
"rand",
|
|
"uuid",
|
|
]
|
|
|
|
# These dependencies require networking capabilities, especially the http
|
|
# interface requires openssl which is not easy to embed into wasm,
|
|
# using rustls could solve this issue.
|
|
network = [
|
|
"multipart-rs",
|
|
"native-tls",
|
|
"update-informer/native-tls",
|
|
"ureq",
|
|
"uuid",
|
|
]
|
|
|
|
plugin = [
|
|
"nu-parser/plugin",
|
|
"os",
|
|
]
|
|
sqlite = ["rusqlite"]
|
|
trash-support = ["trash"]
|
|
|
|
[dev-dependencies]
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.102.1" }
|
|
nu-test-support = { path = "../nu-test-support", version = "0.102.1" }
|
|
|
|
dirs = { workspace = true }
|
|
mockito = { workspace = true, default-features = false }
|
|
rstest = { workspace = true, default-features = false }
|
|
rstest_reuse = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
rand_chacha = { workspace = true }
|