mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
84 lines
1.8 KiB
TOML
84 lines
1.8 KiB
TOML
[package]
|
|
name = "reth-ethereum-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-cli.workspace = true
|
|
reth-cli-commands.workspace = true
|
|
reth-cli-runner.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-db.workspace = true
|
|
reth-node-builder.workspace = true
|
|
reth-node-core.workspace = true
|
|
reth-node-ethereum.workspace = true
|
|
reth-node-metrics.workspace = true
|
|
reth-rpc-server-types.workspace = true
|
|
reth-tracing.workspace = true
|
|
reth-node-api.workspace = true
|
|
|
|
# misc
|
|
clap.workspace = true
|
|
eyre.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
# fs
|
|
tempfile.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
|
|
otlp = ["reth-tracing/otlp", "reth-node-core/otlp"]
|
|
|
|
dev = ["reth-cli-commands/arbitrary"]
|
|
|
|
asm-keccak = [
|
|
"reth-node-core/asm-keccak",
|
|
"reth-node-ethereum/asm-keccak",
|
|
]
|
|
|
|
jemalloc = [
|
|
"reth-node-core/jemalloc",
|
|
"reth-node-metrics/jemalloc",
|
|
]
|
|
jemalloc-prof = [
|
|
"reth-node-core/jemalloc",
|
|
]
|
|
tracy-allocator = []
|
|
|
|
# Because jemalloc is default and preferred over snmalloc when both features are
|
|
# enabled, `--no-default-features` should be used when enabling snmalloc or
|
|
# snmalloc-native.
|
|
snmalloc = []
|
|
snmalloc-native = []
|
|
|
|
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",
|
|
]
|