chore: turn off reth-revm default features (#10215)

Co-authored-by: Federico Gimenez <federico.gimenez@gmail.com>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Jonathan LEI
2024-10-15 18:32:25 +08:00
committed by GitHub
parent 5e386130da
commit 39f0ab4116
9 changed files with 36 additions and 4 deletions

View File

@ -23,6 +23,9 @@ reth-db-api.workspace = true
reth-provider = { workspace = true, features = ["test-utils"] }
reth-stages.workspace = true
reth-evm-ethereum.workspace = true
reth-revm = { workspace = true, features = ["std"] }
revm = { workspace = true, features = ["secp256k1", "blst", "c-kzg"] }
alloy-rlp.workspace = true
alloy-primitives.workspace = true

View File

@ -7,6 +7,9 @@
)]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
use reth_revm as _;
use revm as _;
pub mod case;
pub mod result;
pub mod suite;