mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
103 lines
2.3 KiB
TOML
103 lines
2.3 KiB
TOML
[package]
|
|
name = "reth-bench-compare"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Automated reth benchmark comparison between git references"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "reth-bench-compare"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-cli-runner.workspace = true
|
|
reth-cli-util.workspace = true
|
|
reth-node-core.workspace = true
|
|
reth-tracing.workspace = true
|
|
reth-chainspec.workspace = true
|
|
|
|
# alloy
|
|
alloy-provider = { workspace = true, features = ["reqwest-rustls-tls"], default-features = false }
|
|
alloy-rpc-client = { workspace = true, features = ["pubsub"] }
|
|
alloy-rpc-types-eth.workspace = true
|
|
alloy-transport-ws.workspace = true
|
|
alloy-primitives.workspace = true
|
|
|
|
# CLI and argument parsing
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
eyre.workspace = true
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tracing.workspace = true
|
|
|
|
# Serialization
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
|
|
# Time handling
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
|
|
# Path manipulation
|
|
shellexpand.workspace = true
|
|
|
|
# CSV handling
|
|
csv.workspace = true
|
|
|
|
# Process management
|
|
ctrlc.workspace = true
|
|
shlex.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = { version = "0.29", features = ["signal", "process"] }
|
|
|
|
[features]
|
|
default = ["jemalloc"]
|
|
|
|
asm-keccak = [
|
|
"reth-node-core/asm-keccak",
|
|
"alloy-primitives/asm-keccak",
|
|
]
|
|
|
|
jemalloc = [
|
|
"reth-cli-util/jemalloc",
|
|
"reth-node-core/jemalloc",
|
|
]
|
|
jemalloc-prof = ["reth-cli-util/jemalloc-prof"]
|
|
tracy-allocator = ["reth-cli-util/tracy-allocator", "tracy"]
|
|
tracy = [
|
|
"reth-node-core/tracy",
|
|
"reth-tracing/tracy",
|
|
]
|
|
|
|
min-error-logs = [
|
|
"tracing/release_max_level_error",
|
|
"reth-node-core/min-error-logs",
|
|
]
|
|
min-warn-logs = [
|
|
"tracing/release_max_level_warn",
|
|
"reth-node-core/min-warn-logs",
|
|
]
|
|
min-info-logs = [
|
|
"tracing/release_max_level_info",
|
|
"reth-node-core/min-info-logs",
|
|
]
|
|
min-debug-logs = [
|
|
"tracing/release_max_level_debug",
|
|
"reth-node-core/min-debug-logs",
|
|
]
|
|
min-trace-logs = [
|
|
"tracing/release_max_level_trace",
|
|
"reth-node-core/min-trace-logs",
|
|
]
|
|
|
|
# no-op feature flag for switching between the `optimism` and default functionality in CI matrices
|
|
ethereum = []
|