Skip to content

Commit 95250fc

Browse files
committed
ci(chain): downgrade hashbrown dependency to 0.9.1 to fix ahash related MSRV issue
1 parent f17df1e commit 95250fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/chain/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ bitcoin = { version = "0.30.0", default-features = false }
1818
serde_crate = { package = "serde", version = "1", optional = true, features = ["derive"] }
1919

2020
# Use hashbrown as a feature flag to have HashSet and HashMap from it.
21-
# note version 0.13 breaks outs MSRV.
22-
hashbrown = { version = "0.11", optional = true, features = ["serde"] }
21+
# note versions > 0.9.1 breaks ours 1.57.0 MSRV.
22+
hashbrown = { version = "0.9.1", optional = true, features = ["serde"] }
2323
miniscript = { version = "10.0.0", optional = true, default-features = false }
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)