feat: integrate request validation in EnginveValidator (#13858)

Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com>
This commit is contained in:
DevOrbitlabs
2025-01-23 23:11:30 +07:00
committed by GitHub
parent 187634fd2f
commit 9039909a78
11 changed files with 47 additions and 29 deletions

View File

@ -24,6 +24,7 @@ reth-errors.workspace = true
alloy-primitives.workspace = true
alloy-consensus.workspace = true
alloy-rpc-types-engine.workspace = true
alloy-eips.workspace = true
# async
tokio = { workspace = true, features = ["sync"] }
@ -36,13 +37,14 @@ thiserror.workspace = true
[features]
default = ["std"]
std = [
"reth-execution-types/std",
"reth-primitives/std",
"reth-primitives-traits/std",
"alloy-primitives/std",
"alloy-consensus/std",
"alloy-rpc-types-engine/std",
"futures/std",
"serde/std",
"thiserror/std",
"reth-execution-types/std",
"reth-primitives/std",
"reth-primitives-traits/std",
"alloy-primitives/std",
"alloy-consensus/std",
"alloy-rpc-types-engine/std",
"futures/std",
"serde/std",
"thiserror/std",
"alloy-eips/std"
]