Skip to content

Commit

Permalink
Use hashbrown for revme
Browse files Browse the repository at this point in the history
  • Loading branch information
rakita committed Sep 17, 2024
1 parent 4d8ef11 commit 32cb598
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions bins/revme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ version = "0.10.1"
revm = { workspace = true, features = [
"std",
"serde-json",
"hashbrown",
"c-kzg",
"blst",
] }
Expand Down
5 changes: 4 additions & 1 deletion crates/wiring/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ pub mod kzg;
#[cfg(any(feature = "c-kzg", feature = "kzg-rs"))]
pub use kzg::{EnvKzgSettings, KzgSettings};

#[cfg(all(feature = "c-kzg", feature = "kzg-rs"))]
// silence kzg-rs lint as c-kzg will be used as default if both are enabled.

#[cfg(all(feature = "c-kzg", feature = "kzg-rs"))]
use kzg_rs as _;
#[cfg(all(feature = "c-kzg", feature = "kzg-rs"))]
use once_cell as _;

0 comments on commit 32cb598

Please sign in to comment.