From 5b6a3171c6bdffb33c649bf20dc3f78cf0e6bf7f Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Wed, 15 Nov 2023 04:14:02 +0000 Subject: [PATCH] Update Rust crate itertools to 0.12.0 --- Cargo.lock | 17 +++++++++++++---- cargo-nextest/Cargo.toml | 2 +- nextest-runner/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c685c57cf76..61057818514 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -371,7 +371,7 @@ dependencies = [ "enable-ansi-support", "env_logger", "guppy", - "itertools", + "itertools 0.12.0", "log", "miette", "nextest-filtering", @@ -1065,7 +1065,7 @@ dependencies = [ "fixedbitset", "guppy-workspace-hack", "indexmap 2.1.0", - "itertools", + "itertools 0.11.0", "nested", "once_cell", "pathdiff", @@ -1430,6 +1430,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" @@ -1684,7 +1693,7 @@ dependencies = [ "indicatif", "indoc", "is_ci", - "itertools", + "itertools 0.12.0", "libc", "log", "maplit", @@ -2114,7 +2123,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32" dependencies = [ "anyhow", - "itertools", + "itertools 0.11.0", "proc-macro2", "quote", "syn 2.0.39", diff --git a/cargo-nextest/Cargo.toml b/cargo-nextest/Cargo.toml index 887d4cc6c78..113f1b8d22a 100644 --- a/cargo-nextest/Cargo.toml +++ b/cargo-nextest/Cargo.toml @@ -24,7 +24,7 @@ enable-ansi-support = "0.2.1" env_logger = { version = "0.10.1", default-features = false } guppy = "0.17.2" log = "0.4.20" -itertools = "0.11.0" +itertools = "0.12.0" miette = { version = "5.10.0", features = ["fancy"] } nextest-filtering = { version = "=0.5.1", path = "../nextest-filtering" } nextest-runner = { version = "=0.49.0", path = "../nextest-runner" } diff --git a/nextest-runner/Cargo.toml b/nextest-runner/Cargo.toml index ab7888a3871..f9e34976be2 100644 --- a/nextest-runner/Cargo.toml +++ b/nextest-runner/Cargo.toml @@ -38,7 +38,7 @@ humantime-serde = "1.1.1" indent_write = "2.2.0" indicatif = "0.17.7" is_ci = "1.1.1" -itertools = "0.11.0" +itertools = "0.12.0" log = "0.4.20" rand = "0.8.5" miette = "5.10.0"