mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 11:07:44 +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"
|
||||
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",
|
||||
|
|
|
@ -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]]
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
name = "uu_printf"
|
||||
version = "0.0.12"
|
||||
authors = [
|
||||
"Nathan Ross",
|
||||
"uutils developers",
|
||||
"Nathan Ross",
|
||||
"uutils developers",
|
||||
]
|
||||
license = "MIT"
|
||||
description = "printf ~ (uutils) FORMAT and display ARGUMENTS"
|
||||
|
@ -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"
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue