Skip to content

Commit

Permalink
Merge pull request #94 from paritytech/andre/fix-no-std
Browse files Browse the repository at this point in the history
build: fix hashbrown features under no-std
  • Loading branch information
rphmeier authored Nov 21, 2019
2 parents 93d842b + 054474b commit 2cf3e45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ log = "0.4"
parking_lot = { version = "0.9", optional = true }
parity-scale-codec = { version = "1.0.3", optional = true, default-features = false, features = ["derive"] }
num = { package = "num-traits", version = "0.2", default-features = false }
hashbrown = { version = "0.6.3", default-features = false }
hashbrown = { version = "0.6.3", default-features = false, features = ["ahash", "inline-more"] }

[dev-dependencies]
exit-future = "0.1.2"
Expand Down

0 comments on commit 2cf3e45

Please sign in to comment.