feat(reth-bench): send-payload CLI (#14472)

This commit is contained in:
Alexey Shekhirin
2025-02-13 16:04:40 +00:00
committed by GitHub
parent 08011a829e
commit 431df62a4a
4 changed files with 289 additions and 14 deletions

17
Cargo.lock generated
View File

@ -2510,6 +2510,17 @@ dependencies = [
"tokio-util",
]
[[package]]
name = "delegate"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "297806318ef30ad066b15792a8372858020ae3ca2e414ee6c2133b1eb9e9e945"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.98",
]
[[package]]
name = "der"
version = "0.7.9"
@ -6638,12 +6649,14 @@ dependencies = [
name = "reth-bench"
version = "1.2.0"
dependencies = [
"alloy-consensus",
"alloy-eips",
"alloy-json-rpc",
"alloy-primitives",
"alloy-provider",
"alloy-pubsub",
"alloy-rpc-client",
"alloy-rpc-types",
"alloy-rpc-types-engine",
"alloy-transport",
"alloy-transport-http",
@ -6652,17 +6665,21 @@ dependencies = [
"async-trait",
"clap",
"csv",
"delegate",
"eyre",
"futures",
"op-alloy-rpc-types",
"reqwest",
"reth-cli-runner",
"reth-cli-util",
"reth-fs-util",
"reth-node-api",
"reth-node-core",
"reth-primitives",
"reth-primitives-traits",
"reth-tracing",
"serde",
"serde_json",
"thiserror 2.0.11",
"tokio",
"tower 0.4.13",