@@ -96,6 +96,9 @@ unreachable-pub = "warn"
9696unused-must-use = " deny"
9797rust-2018-idioms = " deny"
9898unnameable-types = " warn"
99+ # base_metrics::define_metrics! uses cfg(feature = "metrics") in macro expansions
100+ # which are evaluated in the destination crate's context, not the defining crate's.
101+ unexpected_cfgs = { level = " warn" , check-cfg = [' cfg(feature, values("metrics"))' ] }
99102
100103[workspace .lints .rustdoc ]
101104all = " warn"
@@ -182,7 +185,6 @@ base-alloy-rpc-types = { path = "crates/common/rpc-types" }
182185base-access-lists = { path = " crates/common/access-lists" }
183186base-alloy-flashblocks = { path = " crates/common/flashblocks" }
184187base-alloy-rpc-jsonrpsee = { path = " crates/common/rpc-jsonrpsee" }
185- base-alloy-evm = { path = " crates/common/evm" , default-features = false }
186188base-alloy-flz = { path = " crates/common/flz" , default-features = false }
187189base-alloy-consensus = { path = " crates/common/consensus" , default-features = false }
188190base-alloy-rpc-types-engine = { path = " crates/common/rpc-types-engine" , default-features = false }
@@ -220,7 +222,6 @@ base-consensus-providers = { path = "crates/consensus/providers-alloy", default-
220222# Execution
221223base-node-core = { path = " crates/execution/node" }
222224base-execution-cli = { path = " crates/execution/cli" }
223- base-execution-evm = { path = " crates/execution/evm" }
224225base-execution-rpc = { path = " crates/execution/rpc" }
225226base-node-runner = { path = " crates/execution/runner" }
226227base-execution-exex = { path = " crates/execution/exex" }
@@ -234,7 +235,7 @@ base-execution-chainspec = { path = "crates/execution/chainspec" }
234235base-execution-consensus = { path = " crates/execution/consensus" }
235236base-execution-primitives = { path = " crates/execution/primitives" }
236237base-execution-payload-builder = { path = " crates/execution/payload" }
237- base-revm = { path = " crates/execution/revm " , default-features = false }
238+ base-evm = { path = " crates/execution/evm " , default-features = false }
238239
239240# Txpool
240241base-txpool = { path = " crates/txpool" }
0 commit comments