1
Fork 0
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:
Sylvestre Ledru 2022-01-30 16:40:39 +01:00 committed by GitHub
commit c57ea0a938
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 19 deletions

17
Cargo.lock generated
View file

@ -921,15 +921,6 @@ version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c429fffa658f288669529fc26565f728489a2e39bc7b24a428aaaf51355182e"
[[package]]
name = "itertools"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484"
dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.10.3"
@ -2623,7 +2614,7 @@ dependencies = [
"chrono",
"clap 3.0.10",
"getopts",
"itertools 0.10.3",
"itertools",
"quick-error 2.0.1",
"regex",
"uucore",
@ -2642,7 +2633,7 @@ name = "uu_printf"
version = "0.0.12"
dependencies = [
"clap 3.0.10",
"itertools 0.8.2",
"itertools",
"uucore",
]
@ -2772,7 +2763,7 @@ dependencies = [
"compare",
"ctrlc",
"fnv",
"itertools 0.10.3",
"itertools",
"memchr 2.4.1",
"ouroboros",
"rand",
@ -3044,7 +3035,7 @@ dependencies = [
"data-encoding-macro",
"dns-lookup",
"dunce",
"itertools 0.8.2",
"itertools",
"lazy_static",
"libc",
"nix 0.23.1",

View file

@ -20,7 +20,7 @@ uucore = { version=">=0.0.7", package="uucore", path="../../uucore", features=["
getopts = "0.2.21"
chrono = "0.4.19"
quick-error = "2.0.1"
itertools = "0.10"
itertools = "0.10.0"
regex = "1.0"
[[bin]]

View file

@ -19,8 +19,8 @@ path = "src/printf.rs"
[dependencies]
clap = { version = "3.0", features = ["wrap_help", "cargo"] }
itertools = "0.8.0"
uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["memo"] }
itertools = "0.10.0"
uucore = { version = ">=0.0.11", package = "uucore", path = "../../uucore", features = ["memo"] }
[[bin]]
name = "printf"

View file

@ -22,7 +22,7 @@ dns-lookup = { version="1.0.5", optional=true }
dunce = "1.0.0"
wild = "2.0"
# * optional
itertools = { version="0.8", optional=true }
itertools = { version="0.10.0", optional=true }
thiserror = { version="1.0", optional=true }
time = { version="<= 0.1.43", optional=true }
# * "problem" dependencies (pinned)