diff --git a/Cargo.lock b/Cargo.lock index c2be33c31..365664465 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2473,7 +2473,7 @@ version = "0.1.0" dependencies = [ "alloy", "criterion", - "hashbrown 0.14.5", + "hashbrown 0.15.0", "hex", "log", "parking_lot 0.12.3", @@ -2920,6 +2920,12 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2" + [[package]] name = "foreign-types" version = "0.3.2" @@ -3499,6 +3505,17 @@ dependencies = [ "serde", ] +[[package]] +name = "hashbrown" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] + [[package]] name = "hashers" version = "1.0.1" diff --git a/eth-trie.rs/Cargo.toml b/eth-trie.rs/Cargo.toml index 8cde6c55c..2d171de4c 100644 --- a/eth-trie.rs/Cargo.toml +++ b/eth-trie.rs/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["patricia", "mpt", "evm", "trie", "ethereum"] [dependencies] alloy = { version = "0.4.2", default-features = false, features = ["rlp"] } -hashbrown = "0.14.5" +hashbrown = "0.15.0" log = "0.4.22" parking_lot = "0.12.3" rlp = "0.6.1"