From 7b9ca0af733ccd13c2e2964cc9e982d6e4603864 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Wed, 11 Dec 2024 01:01:43 +0100 Subject: [PATCH] perf: enable map-foldhash alloy-primitives feature globally (#13278) --- Cargo.toml | 5 +++-- crates/trie/sparse/Cargo.toml | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 285f0fc6e379..20f7ba19f60e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -433,7 +433,9 @@ revm-primitives = { version = "14.0.0", default-features = false } # eth alloy-chains = { version = "0.1.32", default-features = false } alloy-dyn-abi = "0.8.15" -alloy-primitives = { version = "0.8.15", default-features = false } +alloy-primitives = { version = "0.8.15", default-features = false, features = [ + "map-foldhash", +] } alloy-rlp = { version = "0.3.10", default-features = false } alloy-sol-types = "0.8.15" alloy-trie = { version = "0.7", default-features = false } @@ -563,7 +565,6 @@ tracing-futures = "0.2" tower = "0.4" tower-http = "0.6" - # p2p discv5 = "0.8.0" if-addrs = "0.13" diff --git a/crates/trie/sparse/Cargo.toml b/crates/trie/sparse/Cargo.toml index 09826e410847..205451ef72a8 100644 --- a/crates/trie/sparse/Cargo.toml +++ b/crates/trie/sparse/Cargo.toml @@ -11,7 +11,6 @@ description = "Sparse MPT implementation" [lints] workspace = true - [dependencies] # reth reth-primitives-traits.workspace = true