Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: expose sha3-keccak in revm and revm-primitives
  • Loading branch information
Rjected committed Jul 15, 2025
commit 71fb150b7470e4e557bf767e13bc43fa0a308d0a
1 change: 1 addition & 0 deletions crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ serde = ["dep:serde", "alloy-primitives/serde"]
hashbrown = ["alloy-primitives/map-hashbrown"]
arbitrary = ["std", "alloy-primitives/arbitrary"]
asm-keccak = ["alloy-primitives/asm-keccak"]
sha3-keccak = ["alloy-primitives/sha3-keccak"]
rand = ["alloy-primitives/rand"]
1 change: 1 addition & 0 deletions crates/revm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ serde = [
]
arbitrary = ["primitives/arbitrary"]
asm-keccak = ["primitives/asm-keccak"]
sha3-keccak = ["primitives/sha3-keccak"]
asyncdb = ["database-interface/asyncdb"]

# Enables alloydb inside database crate
Expand Down
Loading