From: Steve Myers Date: Sat, 4 Nov 2023 02:46:25 +0000 (-0500) Subject: ci(chain): downgrade hashbrown dependency to 0.9.1 to fix ahash related MSRV issue X-Git-Tag: v1.0.0-alpha.3~25^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/struct.ScriptPath.html?a=commitdiff_plain;h=95250fc44ed1372e77995d04ac2b380e0cb126a0;p=bdk ci(chain): downgrade hashbrown dependency to 0.9.1 to fix ahash related MSRV issue --- 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]