mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
Merge pull request #2964 from biomunky/2940
fix: update itertools 0.8.0 -> 0.10.0
This commit is contained in:
commit
c57ea0a938
4 changed files with 10 additions and 19 deletions
17
Cargo.lock
generated
17
Cargo.lock
generated
|
@ -921,15 +921,6 @@ version = "0.6.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "1c429fffa658f288669529fc26565f728489a2e39bc7b24a428aaaf51355182e"
|
checksum = "1c429fffa658f288669529fc26565f728489a2e39bc7b24a428aaaf51355182e"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "itertools"
|
|
||||||
version = "0.8.2"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484"
|
|
||||||
dependencies = [
|
|
||||||
"either",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "itertools"
|
name = "itertools"
|
||||||
version = "0.10.3"
|
version = "0.10.3"
|
||||||
|
@ -2623,7 +2614,7 @@ dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"clap 3.0.10",
|
"clap 3.0.10",
|
||||||
"getopts",
|
"getopts",
|
||||||
"itertools 0.10.3",
|
"itertools",
|
||||||
"quick-error 2.0.1",
|
"quick-error 2.0.1",
|
||||||
"regex",
|
"regex",
|
||||||
"uucore",
|
"uucore",
|
||||||
|
@ -2642,7 +2633,7 @@ name = "uu_printf"
|
||||||
version = "0.0.12"
|
version = "0.0.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap 3.0.10",
|
"clap 3.0.10",
|
||||||
"itertools 0.8.2",
|
"itertools",
|
||||||
"uucore",
|
"uucore",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -2772,7 +2763,7 @@ dependencies = [
|
||||||
"compare",
|
"compare",
|
||||||
"ctrlc",
|
"ctrlc",
|
||||||
"fnv",
|
"fnv",
|
||||||
"itertools 0.10.3",
|
"itertools",
|
||||||
"memchr 2.4.1",
|
"memchr 2.4.1",
|
||||||
"ouroboros",
|
"ouroboros",
|
||||||
"rand",
|
"rand",
|
||||||
|
@ -3044,7 +3035,7 @@ dependencies = [
|
||||||
"data-encoding-macro",
|
"data-encoding-macro",
|
||||||
"dns-lookup",
|
"dns-lookup",
|
||||||
"dunce",
|
"dunce",
|
||||||
"itertools 0.8.2",
|
"itertools",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"libc",
|
"libc",
|
||||||
"nix 0.23.1",
|
"nix 0.23.1",
|
||||||
|
|
|
@ -20,7 +20,7 @@ uucore = { version=">=0.0.7", package="uucore", path="../../uucore", features=["
|
||||||
getopts = "0.2.21"
|
getopts = "0.2.21"
|
||||||
chrono = "0.4.19"
|
chrono = "0.4.19"
|
||||||
quick-error = "2.0.1"
|
quick-error = "2.0.1"
|
||||||
itertools = "0.10"
|
itertools = "0.10.0"
|
||||||
regex = "1.0"
|
regex = "1.0"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
|
|
|
@ -19,7 +19,7 @@ path = "src/printf.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "3.0", features = ["wrap_help", "cargo"] }
|
clap = { version = "3.0", features = ["wrap_help", "cargo"] }
|
||||||
itertools = "0.8.0"
|
itertools = "0.10.0"
|
||||||
uucore = { version = ">=0.0.11", package = "uucore", path = "../../uucore", features = ["memo"] }
|
uucore = { version = ">=0.0.11", package = "uucore", path = "../../uucore", features = ["memo"] }
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
|
|
|
@ -22,7 +22,7 @@ dns-lookup = { version="1.0.5", optional=true }
|
||||||
dunce = "1.0.0"
|
dunce = "1.0.0"
|
||||||
wild = "2.0"
|
wild = "2.0"
|
||||||
# * optional
|
# * optional
|
||||||
itertools = { version="0.8", optional=true }
|
itertools = { version="0.10.0", optional=true }
|
||||||
thiserror = { version="1.0", optional=true }
|
thiserror = { version="1.0", optional=true }
|
||||||
time = { version="<= 0.1.43", optional=true }
|
time = { version="<= 0.1.43", optional=true }
|
||||||
# * "problem" dependencies (pinned)
|
# * "problem" dependencies (pinned)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue