diff --git a/Cargo.lock b/Cargo.lock index 879b7663d3b1b..e050a16c75419 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4519,6 +4519,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.9" @@ -6766,7 +6775,7 @@ checksum = "8bdf592881d821b83d471f8af290226c8d51402259e9bb5be7f9f8bdebbb11ac" dependencies = [ "bytes 1.5.0", "heck 0.4.1", - "itertools 0.11.0", + "itertools 0.10.5", "log", "multimap", "once_cell", @@ -6800,7 +6809,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32" dependencies = [ "anyhow", - "itertools 0.11.0", + "itertools 0.10.5", "proc-macro2 1.0.69", "quote 1.0.33", "syn 2.0.38", @@ -9819,7 +9828,7 @@ dependencies = [ "hex", "indexmap 2.0.2", "indicatif", - "itertools 0.11.0", + "itertools 0.13.0", "log", "once_cell", "os_info", @@ -9924,7 +9933,7 @@ dependencies = [ "indoc", "infer 0.15.0", "inventory", - "itertools 0.11.0", + "itertools 0.13.0", "k8s-openapi 0.18.0", "kube", "lapin", diff --git a/Cargo.toml b/Cargo.toml index 287624f94bf50..26c60c9d7ea7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -216,7 +216,7 @@ lapin = { version = "2.3.1", default-features = false, features = ["native-tls"] # API async-graphql = { version = "6.0.9", default-features = false, optional = true, features = ["chrono", "playground"] } async-graphql-warp = { version = "6.0.0", default-features = false, optional = true } -itertools = { version = "0.11.0", default-features = false } +itertools = { version = "0.13.0", default-features = false } # API client crossterm = { version = "0.27.0", default-features = false, features = ["event-stream", "windows"], optional = true } @@ -349,7 +349,7 @@ azure_storage_blobs = { version = "0.16", default-features = false, features = [ azure_storage = { version = "0.16", default-features = false } base64 = "0.21.5" criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] } -itertools = { version = "0.11.0", default-features = false, features = ["use_alloc"] } +itertools = { version = "0.13.0", default-features = false, features = ["use_alloc"] } libc = "0.2.149" similar-asserts = "1.5.0" proptest = "1.3" diff --git a/vdev/Cargo.toml b/vdev/Cargo.toml index f11dd3200adde..a98fdb942265e 100644 --- a/vdev/Cargo.toml +++ b/vdev/Cargo.toml @@ -22,7 +22,7 @@ glob = { version = "0.3.1", default-features = false } hex = "0.4.3" indexmap = { version = "2.0", default-features = false, features = ["serde", "std"] } indicatif = { version = "0.17.7", features = ["improved_unicode"] } -itertools = "0.11.0" +itertools = "0.13.0" log = "0.4.20" once_cell = "1.18" os_info = { version = "3.7.0", default-features = false }