forked from extern/nushell
03ae01f11e
Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.11.0 to 0.12.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md">itertools's changelog</a>.</em></p> <blockquote> <h2>0.12.0</h2> <h3>Breaking</h3> <ul> <li>Made <code>take_while_inclusive</code> consume iterator by value (<a href="https://redirect.github.com/rust-itertools/itertools/issues/709">#709</a>)</li> <li>Added <code>Clone</code> bound to <code>Unique</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/777">#777</a>)</li> </ul> <h3>Added</h3> <ul> <li>Added <code>Itertools::try_len</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/723">#723</a>)</li> <li>Added free function <code>sort_unstable</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/796">#796</a>)</li> <li>Added <code>GroupMap::fold_with</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/778">#778</a>, <a href="https://redirect.github.com/rust-itertools/itertools/issues/785">#785</a>)</li> <li>Added <code>PeekNth::{peek_mut, peek_nth_mut}</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/716">#716</a>)</li> <li>Added <code>PeekNth::{next_if, next_if_eq}</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/734">#734</a>)</li> <li>Added conversion into <code>(Option<A>,Option<B>)</code> to <code>EitherOrBoth</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/713">#713</a>)</li> <li>Added conversion from <code>Either<A, B></code> to <code>EitherOrBoth<A, B></code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/715">#715</a>)</li> <li>Implemented <code>ExactSizeIterator</code> for <code>Tuples</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/761">#761</a>)</li> <li>Implemented <code>ExactSizeIterator</code> for <code>(Circular)TupleWindows</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/752">#752</a>)</li> <li>Made <code>EitherOrBoth<T></code> a shorthand for <code>EitherOrBoth<T, T></code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/719">#719</a>)</li> </ul> <h3>Changed</h3> <ul> <li>Added missing <code>#[must_use]</code> annotations on iterator adaptors (<a href="https://redirect.github.com/rust-itertools/itertools/issues/794">#794</a>)</li> <li>Made <code>Combinations</code> lazy (<a href="https://redirect.github.com/rust-itertools/itertools/issues/795">#795</a>)</li> <li>Made <code>Intersperse(With)</code> lazy (<a href="https://redirect.github.com/rust-itertools/itertools/issues/797">#797</a>)</li> <li>Made <code>Permutations</code> lazy (<a href="https://redirect.github.com/rust-itertools/itertools/issues/793">#793</a>)</li> <li>Made <code>Product</code> lazy (<a href="https://redirect.github.com/rust-itertools/itertools/issues/800">#800</a>)</li> <li>Made <code>TupleWindows</code> lazy (<a href="https://redirect.github.com/rust-itertools/itertools/issues/602">#602</a>)</li> <li>Specialized <code>Combinations::{count, size_hint}</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/729">#729</a>)</li> <li>Specialized <code>CombinationsWithReplacement::{count, size_hint}</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/737">#737</a>)</li> <li>Specialized <code>Powerset::fold</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/765">#765</a>)</li> <li>Specialized <code>Powerset::count</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/735">#735</a>)</li> <li>Specialized <code>TupleCombinations::{count, size_hint}</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/763">#763</a>)</li> <li>Specialized <code>TupleCombinations::fold</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/775">#775</a>)</li> <li>Specialized <code>WhileSome::fold</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/780">#780</a>)</li> <li>Specialized <code>WithPosition::fold</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/772">#772</a>)</li> <li>Specialized <code>ZipLongest::fold</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/774">#774</a>)</li> <li>Changed <code>{min, max}_set*</code> operations require <code>alloc</code> feature, instead of <code>std</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/760">#760</a>)</li> <li>Improved documentation of <code>tree_fold1</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/787">#787</a>)</li> <li>Improved documentation of <code>permutations</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/724">#724</a>)</li> <li>Fixed typo in documentation of <code>multiunzip</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/770">#770</a>)</li> </ul> <h3>Notable Internal Changes</h3> <ul> <li>Improved specialization tests (<a href="https://redirect.github.com/rust-itertools/itertools/issues/799">#799</a>, <a href="https://redirect.github.com/rust-itertools/itertools/issues/786">#786</a>, <a href="https://redirect.github.com/rust-itertools/itertools/issues/782">#782</a>)</li> <li>Simplified implementation of <code>Permutations</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/739">#739</a>, <a href="https://redirect.github.com/rust-itertools/itertools/issues/748">#748</a>, <a href="https://redirect.github.com/rust-itertools/itertools/issues/790">#790</a>)</li> <li>Combined <code>Merge</code>/<code>MergeBy</code>/<code>MergeJoinBy</code> implementations (<a href="https://redirect.github.com/rust-itertools/itertools/issues/736">#736</a>)</li> <li>Simplified <code>Permutations::size_hint</code> (<a href="https://redirect.github.com/rust-itertools/itertools/issues/739">#739</a>)</li> <li>Fix wrapping arithmetic in benchmarks (<a href="https://redirect.github.com/rust-itertools/itertools/issues/770">#770</a>)</li> <li>Enforced <code>rustfmt</code> in CI (<a href="https://redirect.github.com/rust-itertools/itertools/issues/751">#751</a>)</li> <li>Disallowed compile warnings in CI (<a href="https://redirect.github.com/rust-itertools/itertools/issues/720">#720</a>)</li> <li>Used <code>cargo hack</code> to check MSRV (<a href="https://redirect.github.com/rust-itertools/itertools/issues/754">#754</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="98ecabb47d
"><code>98ecabb</code></a> chore: Release itertools version 0.12.0</li> <li><a href="22fc427ac5
"><code>22fc427</code></a> prepare v0.12.0 release</li> <li><a href="6d291786a9
"><code>6d29178</code></a> Document the field <code>a_cur</code> of <code>Product</code></li> <li><a href="bf2b0129d1
"><code>bf2b012</code></a> Better <code>Product::size_hint</code></li> <li><a href="8d07f6b856
"><code>8d07f6b</code></a> Make <code>Product</code> lazy</li> <li><a href="d7e6bab9fd
"><code>d7e6bab</code></a> Document the field <code>peek</code> of <code>IntersperseWith</code></li> <li><a href="9b01a11891
"><code>9b01a11</code></a> Make <code>IntersperseWith</code> lazy</li> <li><a href="4f22173b93
"><code>4f22173</code></a> Refactor <code>IntersperseWith::next</code></li> <li><a href="b76172b412
"><code>b76172b</code></a> chore: adjust docs to reflect discussion in the PR</li> <li><a href="955927f6c4
"><code>955927f</code></a> chore: fixup docs of tree_fold1</li> <li>Additional commits viewable in <a href="https://github.com/rust-itertools/itertools/compare/v0.11.0...v0.12.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=itertools&package-manager=cargo&previous-version=0.11.0&new-version=0.12.0)](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>
142 lines
4.2 KiB
TOML
142 lines
4.2 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.88.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
nu-ansi-term = "0.49.0"
|
|
nu-cmd-base = { path = "../nu-cmd-base", version = "0.88.2" }
|
|
nu-color-config = { path = "../nu-color-config", version = "0.88.2" }
|
|
nu-engine = { path = "../nu-engine", version = "0.88.2" }
|
|
nu-glob = { path = "../nu-glob", version = "0.88.2" }
|
|
nu-json = { path = "../nu-json", version = "0.88.2" }
|
|
nu-parser = { path = "../nu-parser", version = "0.88.2" }
|
|
nu-path = { path = "../nu-path", version = "0.88.2" }
|
|
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.88.2" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.88.2" }
|
|
nu-system = { path = "../nu-system", version = "0.88.2" }
|
|
nu-table = { path = "../nu-table", version = "0.88.2" }
|
|
nu-term-grid = { path = "../nu-term-grid", version = "0.88.2" }
|
|
nu-utils = { path = "../nu-utils", version = "0.88.2" }
|
|
|
|
alphanumeric-sort = "1.5"
|
|
base64 = "0.21"
|
|
byteorder = "1.5"
|
|
bytesize = "1.3"
|
|
calamine = "0.22"
|
|
chrono = { version = "0.4", features = ["std", "unstable-locales"], default-features = false }
|
|
chrono-humanize = "0.2.3"
|
|
chrono-tz = "0.8"
|
|
crossterm = "0.27"
|
|
csv = "1.3"
|
|
dialoguer = { default-features = false, features = ["fuzzy-select"], version = "0.11" }
|
|
digest = { default-features = false, version = "0.10" }
|
|
dtparse = "2.0"
|
|
encoding_rs = "0.8"
|
|
fancy-regex = "0.11"
|
|
filesize = "0.2"
|
|
filetime = "0.2"
|
|
fs_extra = "1.3"
|
|
htmlescape = "0.3"
|
|
human-date-parser = "0.1.1"
|
|
indexmap = "2.1"
|
|
indicatif = "0.17"
|
|
itertools = "0.12"
|
|
log = "0.4"
|
|
lscolors = { version = "0.15", default-features = false, features = ["nu-ansi-term"] }
|
|
md5 = { package = "md-5", version = "0.10" }
|
|
miette = { version = "5.10", features = ["fancy-no-backtrace"] }
|
|
mime = "0.3"
|
|
mime_guess = "2.0"
|
|
native-tls = "0.2"
|
|
notify-debouncer-full = { version = "0.3", default-features = false }
|
|
num = { version = "0.4", optional = true }
|
|
num-format = { version = "0.4" }
|
|
num-traits = "0.2"
|
|
once_cell = "1.18"
|
|
open = "5.0"
|
|
os_pipe = "1.1"
|
|
pathdiff = "0.2"
|
|
percent-encoding = "2.3"
|
|
print-positions = "0.6"
|
|
quick-xml = "0.30"
|
|
rand = "0.8"
|
|
rayon = "1.8"
|
|
regex = "1.9.5"
|
|
roxmltree = "0.18"
|
|
rusqlite = { version = "0.29", features = ["bundled", "backup"], optional = true }
|
|
same-file = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_urlencoded = "0.7"
|
|
serde_yaml = "0.9"
|
|
sha2 = "0.10"
|
|
sysinfo = "0.29"
|
|
tabled = { version = "0.14.0", features = ["color"], default-features = false }
|
|
terminal_size = "0.3"
|
|
titlecase = "2.0"
|
|
toml = "0.8"
|
|
unicode-segmentation = "1.10"
|
|
ureq = { version = "2.9", default-features = false, features = ["charset", "gzip", "json", "native-tls"] }
|
|
url = "2.2"
|
|
uu_cp = "0.0.23"
|
|
uu_whoami = "0.0.23"
|
|
uu_mkdir = "0.0.23"
|
|
uu_mktemp = "0.0.23"
|
|
uuid = { version = "1.6", features = ["v4"] }
|
|
wax = { version = "0.6" }
|
|
which = { version = "5.0", optional = true }
|
|
bracoxide = "0.1.2"
|
|
chardetng = "0.1.17"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winreg = "0.52"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
umask = "2.1"
|
|
nix = { version = "0.27", default-features = false, features = ["user", "resource"] }
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
|
|
procfs = "0.16.0"
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.trash]
|
|
optional = true
|
|
version = "3.1"
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_Environment",
|
|
"Win32_System_SystemServices",
|
|
"Win32_Security",
|
|
"Win32_System_Threading",
|
|
]
|
|
version = "0.48"
|
|
|
|
[features]
|
|
plugin = ["nu-parser/plugin"]
|
|
sqlite = ["rusqlite"]
|
|
trash-support = ["trash"]
|
|
which-support = ["which"]
|
|
|
|
[dev-dependencies]
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.88.2" }
|
|
nu-test-support = { path = "../nu-test-support", version = "0.88.2" }
|
|
|
|
dirs-next = "2.0"
|
|
mockito = { version = "1.2", default-features = false }
|
|
quickcheck = "1.0"
|
|
quickcheck_macros = "1.0"
|
|
rstest = { version = "0.18", default-features = false }
|