feat: no_std for reth-evm (#14561)

This commit is contained in:
Arsenii Kulikov
2025-02-18 16:54:56 +04:00
committed by GitHub
parent 67a98860e2
commit 29f4ca2a61
14 changed files with 20 additions and 12 deletions

View File

@ -47,8 +47,6 @@ metrics-util = { workspace = true, features = ["debugging"] }
[features]
default = ["std"]
std = [
"dep:metrics",
"dep:reth-metrics",
"reth-consensus/std",
"reth-primitives/std",
"reth-primitives-traits/std",
@ -66,6 +64,12 @@ std = [
"reth-execution-errors/std",
"reth-execution-types/std",
"reth-storage-errors/std",
"futures-util/std",
]
metrics = [
"std",
"dep:metrics",
"dep:reth-metrics",
]
test-utils = [
"dep:parking_lot",