chore: disable default features for engine primitives (#13939)

This commit is contained in:
Matthias Seitz
2025-01-23 00:04:48 +01:00
committed by GitHub
parent a3015c8a3a
commit 24c5234a50
3 changed files with 16 additions and 14 deletions

View File

@ -36,13 +36,14 @@ serde_json.workspace = true
[features]
default = ["std"]
std = [
"reth-chainspec/std",
"reth-primitives/std",
"alloy-primitives/std",
"alloy-eips/std",
"alloy-rpc-types-engine/std",
"alloy-rlp/std",
"serde/std",
"sha2/std",
"serde_json/std",
"reth-chainspec/std",
"reth-primitives/std",
"alloy-primitives/std",
"alloy-eips/std",
"alloy-rpc-types-engine/std",
"alloy-rlp/std",
"serde/std",
"sha2/std",
"serde_json/std",
"reth-engine-primitives/std"
]