chore(deps): update rust crate itertools to 0.12 (#949)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2023-11-20 16:05:48 +01:00 committed by GitHub
parent 24006752ce
commit e67a683e13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 3 deletions

13
Cargo.lock generated
View File

@ -1498,6 +1498,15 @@ dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.9"
@ -2214,7 +2223,7 @@ dependencies = [
"gethostname",
"humantime",
"indicatif",
"itertools",
"itertools 0.12.0",
"jemallocator-global",
"libc",
"log",
@ -2268,7 +2277,7 @@ dependencies = [
"humantime",
"ignore",
"integer-sqrt",
"itertools",
"itertools 0.11.0",
"log",
"merge",
"nix",

View File

@ -131,7 +131,7 @@ dialoguer = "0.11.0"
indicatif = "0.17"
gethostname = "0.4"
bytesize = "1"
itertools = "0.11"
itertools = "0.12"
humantime = "2"
clap_complete = "4"
clap = { version = "4", features = ["derive", "env", "wrap_help"] }