Skip to content

Commit af7c7e7

Browse files
authored
fezt: add freedom to the keccak impl (#169)
1 parent 31e077b commit af7c7e7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ revm-inspectors = "0.32.0"
9797
# alloy
9898
alloy-chains = { version = "0.2.17", default-features = false }
9999
alloy-evm = { version = "0.23.1", default-features = false }
100-
alloy-primitives = { version = "1.5.2", default-features = false, features = ["sha3-keccak", "map-foldhash"] }
100+
alloy-primitives = { version = "1.5.2", default-features = false, features = ["map-foldhash"] }
101101
alloy-provider = { version = "1.4.3", default-features = false, features = [
102102
"reqwest",
103103
"reqwest-rustls-tls",

crates/executor/client/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ op-alloy-rpc-types = { workspace = true, optional = true }
5656

5757

5858
[features]
59+
default = ["sha3-keccak"]
60+
sha3-keccak = ["alloy-primitives/sha3-keccak"]
61+
native-keccak = ["alloy-primitives/native-keccak"]
5962
optimism = [
6063
"dep:op-alloy-network",
6164
"dep:op-alloy-rpc-types",

0 commit comments

Comments
 (0)