From 664efb944bf9d1f24a62a334fbc50829869247c9 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Mon, 21 Apr 2025 12:14:25 +0100 Subject: [PATCH] fix: Make `reth-evm-ethereum` turn off default-features in top level Cargo.toml (#15825) --- Cargo.toml | 2 +- crates/ethereum/reth/Cargo.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 36b58e7360..33457c81c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -357,7 +357,7 @@ reth-ethereum-primitives = { path = "crates/ethereum/primitives", default-featur reth-ethereum = { path = "crates/ethereum/reth" } reth-etl = { path = "crates/etl" } reth-evm = { path = "crates/evm", default-features = false } -reth-evm-ethereum = { path = "crates/ethereum/evm" } +reth-evm-ethereum = { path = "crates/ethereum/evm", default-features = false } reth-optimism-evm = { path = "crates/optimism/evm", default-features = false } reth-execution-errors = { path = "crates/evm/execution-errors", default-features = false } reth-execution-types = { path = "crates/evm/execution-types", default-features = false } diff --git a/crates/ethereum/reth/Cargo.toml b/crates/ethereum/reth/Cargo.toml index 8d57f69fa3..b70452ef03 100644 --- a/crates/ethereum/reth/Cargo.toml +++ b/crates/ethereum/reth/Cargo.toml @@ -55,6 +55,7 @@ std = [ "alloy-rpc-types-eth?/std", "reth-storage-api?/std", "reth-evm?/std", + "reth-evm-ethereum?/std", "reth-revm?/std", ] arbitrary = [