From 2520bd62c66937ec867470d37f570f69a626cf5b Mon Sep 17 00:00:00 2001 From: "Brandon H. Gomes" Date: Tue, 15 Nov 2022 16:14:07 -0500 Subject: [PATCH] chore: match hashbrown ahash dependency Signed-off-by: Brandon H. Gomes --- plonky2/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plonky2/Cargo.toml b/plonky2/Cargo.toml index b56de755..541f2dcc 100644 --- a/plonky2/Cargo.toml +++ b/plonky2/Cargo.toml @@ -18,7 +18,7 @@ std = ["anyhow/std", "rand/std"] timing = ["std"] [dependencies] -ahash = { version = "0.8.2", default-features = false, features = ["compile-time-rng"] } +ahash = { version = "0.7.6", default-features = false, features = ["compile-time-rng"] } anyhow = { version = "1.0.40", default-features = false } derivative = { version = "2.2.0", default-features = false, features = ["use_core"] } hashbrown = { version = "0.12.3", default-features = false, features = ["ahash", "serde"] }