cargo: bump itertools to 0.12.1

This commit is contained in:
Yuya Nishihara 2024-02-09 18:50:20 +09:00
parent e908bd9a17
commit 917109745f
2 changed files with 13 additions and 4 deletions

15
Cargo.lock generated
View file

@ -1575,6 +1575,15 @@ dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.10"
@ -1606,7 +1615,7 @@ dependencies = [
"hex",
"indexmap",
"insta",
"itertools 0.11.0",
"itertools 0.12.1",
"jj-cli",
"jj-lib",
"libc",
@ -1654,7 +1663,7 @@ dependencies = [
"glob",
"hex",
"insta",
"itertools 0.11.0",
"itertools 0.12.1",
"maplit",
"num_cpus",
"once_cell",
@ -2771,7 +2780,7 @@ dependencies = [
"config",
"git2",
"hex",
"itertools 0.11.0",
"itertools 0.12.1",
"jj-lib",
"rand",
"tempfile",

View file

@ -55,7 +55,7 @@ glob = "0.3.1"
hex = "0.4.3"
indexmap = "2.2.2"
insta = { version = "1.34.0", features = ["filters"] }
itertools = "0.11.0"
itertools = "0.12.1"
libc = { version = "0.2.153" }
maplit = "1.0.2"
num_cpus = "1.16.0"