fix: feature propagation (#11888)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: Oliver <onbjerg@users.noreply.github.com>
This commit is contained in:
liamaharon
2024-10-20 07:36:11 +11:00
committed by GitHub
parent 6c026daf92
commit cf4a4454ec
59 changed files with 880 additions and 201 deletions

View File

@ -70,4 +70,14 @@ tempfile.workspace = true
[features]
default = []
serde = ["reth-provider/serde", "reth-exex-types/serde"]
serde = [
"reth-provider/serde",
"reth-exex-types/serde",
"reth-revm/serde",
"alloy-consensus/serde",
"alloy-eips/serde",
"alloy-primitives/serde",
"parking_lot/serde",
"rand/serde",
"secp256k1/serde"
]

View File

@ -33,5 +33,16 @@ rand.workspace = true
[features]
default = []
serde = ["dep:serde", "reth-execution-types/serde"]
serde-bincode-compat = ["reth-execution-types/serde-bincode-compat", "serde_with"]
serde = [
"dep:serde",
"reth-execution-types/serde",
"alloy-eips/serde",
"alloy-primitives/serde",
"rand/serde"
]
serde-bincode-compat = [
"reth-execution-types/serde-bincode-compat",
"serde_with",
"reth-primitives/serde-bincode-compat",
"alloy-eips/serde-bincode-compat"
]