From 95250fc44ed1372e77995d04ac2b380e0cb126a0 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Fri, 3 Nov 2023 21:46:25 -0500 Subject: [PATCH] ci(chain): downgrade hashbrown dependency to 0.9.1 to fix ahash related MSRV issue --- crates/chain/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/chain/Cargo.toml b/crates/chain/Cargo.toml index 70748893..7af7d341 100644 --- a/crates/chain/Cargo.toml +++ b/crates/chain/Cargo.toml @@ -18,8 +18,8 @@ bitcoin = { version = "0.30.0", default-features = false } serde_crate = { package = "serde", version = "1", optional = true, features = ["derive"] } # Use hashbrown as a feature flag to have HashSet and HashMap from it. -# note version 0.13 breaks outs MSRV. -hashbrown = { version = "0.11", optional = true, features = ["serde"] } +# note versions > 0.9.1 breaks ours 1.57.0 MSRV. +hashbrown = { version = "0.9.1", optional = true, features = ["serde"] } miniscript = { version = "10.0.0", optional = true, default-features = false } [dev-dependencies]