feat(no_std): Add no_std support for reth-ethereum-engine-primitives (#13931)

This commit is contained in:
Emilia Hane
2025-01-22 21:11:59 +01:00
committed by GitHub
parent 97851754df
commit 5238486882
3 changed files with 23 additions and 5 deletions

View File

@ -18,13 +18,13 @@ reth-engine-primitives.workspace = true
reth-payload-primitives.workspace = true
reth-payload-validator.workspace = true
reth-rpc-types-compat.workspace = true
alloy-rlp.workspace = true
reth-chain-state.workspace = true
# alloy
alloy-primitives.workspace = true
alloy-eips.workspace = true
alloy-rpc-types-engine.workspace = true
alloy-rlp.workspace = true
# misc
serde.workspace = true
@ -32,3 +32,17 @@ sha2.workspace = true
[dev-dependencies]
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",
]