Files
nanoreth/crates/optimism/bin/Cargo.toml

38 lines
890 B
TOML

[package]
name = "op-reth"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
exclude.workspace = true
[dependencies]
reth-node-builder.workspace = true
reth-cli-util.workspace = true
reth-optimism-cli.workspace = true
reth-provider.workspace = true
reth-optimism-rpc.workspace = true
reth-optimism-node.workspace = true
clap = { workspace = true, features = ["derive", "env"] }
[lints]
workspace = true
[features]
default = ["jemalloc"]
jemalloc = ["reth-cli-util/jemalloc"]
jemalloc-prof = ["reth-cli-util/jemalloc-prof"]
tracy-allocator = ["reth-cli-util/tracy-allocator"]
asm-keccak = ["reth-optimism-cli/asm-keccak", "reth-optimism-node/asm-keccak"]
optimism = ["reth-optimism-cli/optimism", "reth-optimism-node/optimism"]
[[bin]]
name = "op-reth"
path = "src/main.rs"