From 0fec1124a3e719e9cd0f447d5769b0b4fa34784a Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Wed, 5 Jul 2023 17:30:47 -0700 Subject: [PATCH] update itertools --- field/Cargo.toml | 2 +- plonky2/Cargo.toml | 2 +- starky/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/field/Cargo.toml b/field/Cargo.toml index afc084e8..0ec85af7 100644 --- a/field/Cargo.toml +++ b/field/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] anyhow = { version = "1.0.40", default-features = false } -itertools = { version = "0.10.0", default-features = false, features = ["use_alloc"] } +itertools = { version = "0.11.0", default-features = false, features = ["use_alloc"] } num = { version = "0.4", default-features = false, features = ["alloc", "rand"] } plonky2_util = { version = "0.1.0", default-features = false } rand = { version = "0.8.5", default-features = false, features = ["getrandom"] } diff --git a/plonky2/Cargo.toml b/plonky2/Cargo.toml index 39b95f21..c2e9f970 100644 --- a/plonky2/Cargo.toml +++ b/plonky2/Cargo.toml @@ -21,7 +21,7 @@ timing = ["std"] ahash = { version = "0.7.6", default-features = false, features = ["compile-time-rng"] } # NOTE: Be sure to keep this version the same as the dependency in `hashbrown`. anyhow = { version = "1.0.40", default-features = false } hashbrown = { version = "0.12.3", default-features = false, features = ["ahash", "serde"] } # NOTE: When upgrading, see `ahash` dependency. -itertools = { version = "0.10.0", default-features = false } +itertools = { version = "0.11.0", default-features = false } keccak-hash = { version = "0.8.0", default-features = false } log = { version = "0.4.14", default-features = false } plonky2_maybe_rayon = { version = "0.1.0", default-features = false } diff --git a/starky/Cargo.toml b/starky/Cargo.toml index e47184d7..c09ec5af 100644 --- a/starky/Cargo.toml +++ b/starky/Cargo.toml @@ -18,7 +18,7 @@ timing = ["plonky2/timing"] [dependencies] anyhow = { version = "1.0.40", default-features = false } -itertools = { version = "0.10.0", default-features = false } +itertools = { version = "0.11.0", default-features = false } log = { version = "0.4.14", default-features = false } plonky2_maybe_rayon = { version = "0.1.0", default-features = false } plonky2 = { version = "0.1.2", default-features = false }