From 8a86e1956e9219daed7a846bb1ac0a095e2519b6 Mon Sep 17 00:00:00 2001 From: Tamir Hemo Date: Thu, 20 Jul 2023 11:36:31 -0700 Subject: [PATCH] fix: add itertools/use_std feature flag for [std] --- plonky2/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plonky2/Cargo.toml b/plonky2/Cargo.toml index 8be69ed7..40c4da86 100644 --- a/plonky2/Cargo.toml +++ b/plonky2/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" default = ["gate_testing", "parallel", "rand_chacha", "std", "timing"] gate_testing = [] parallel = ["hashbrown/rayon", "plonky2_maybe_rayon/parallel"] -std = ["anyhow/std", "rand/std"] +std = ["anyhow/std", "rand/std", "itertools/use_std"] timing = ["std"] [dependencies]