From 5979a2e661360d9847d7ff937d7a3bbd57c2afe9 Mon Sep 17 00:00:00 2001 From: Marek Kaput Date: Fri, 24 Nov 2023 12:58:28 +0100 Subject: [PATCH] Bump `itertools` to 0.12.0 (#936) --- Cargo.lock | 15 ++++++++++++--- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 816ff2c68..dd8ddbce6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3368,6 +3368,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" @@ -4678,7 +4687,7 @@ dependencies = [ "include_dir", "indoc", "io_tee", - "itertools 0.11.0", + "itertools 0.12.0", "libc", "ntest", "once_cell", @@ -4831,7 +4840,7 @@ dependencies = [ "clap", "create-output-dir", "fs4", - "itertools 0.11.0", + "itertools 0.12.0", "num-bigint", "num-traits 0.2.17", "rayon", @@ -4858,7 +4867,7 @@ dependencies = [ "dunce", "hyper", "indoc", - "itertools 0.11.0", + "itertools 0.12.0", "once_cell", "scarb", "scarb-build-metadata", diff --git a/Cargo.toml b/Cargo.toml index 920d9b204..c8c662685 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,7 +74,7 @@ include_dir = "0.7" indicatif = "0.17" indoc = "2" io_tee = "0.1" -itertools = "0.11" +itertools = "0.12" libc = "0.2" log = "0.4" ntest = "0.9"