diff --git a/Cargo.lock b/Cargo.lock index a459407..3024fd6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -225,7 +225,7 @@ dependencies = [ "bitflags", "cexpr", "clang-sys", - "itertools", + "itertools 0.12.1", "lazy_static", "lazycell", "proc-macro2", @@ -1856,6 +1856,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.11" @@ -2540,7 +2549,7 @@ dependencies = [ "hashbrown", "httparse", "humantime", - "itertools", + "itertools 0.14.0", "md5", "memchr", "moka", diff --git a/Cargo.toml b/Cargo.toml index 12654e8..7581d61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ hashbrown = { version = "0.14", default-features = false, features = [ ] } httparse = "1.10" humantime = "2.2" -itertools = "0.12.1" +itertools = "0.14.0" md5 = "0.7" memchr = "2.7" moka = { version = "0.12.10", features = ["future"] }