Revert "Moving Optimism bin to Optimism Cli" (#9875)

This commit is contained in:
Matthias Seitz
2024-07-29 22:52:59 +02:00
committed by GitHub
parent 700e660337
commit 700caca7a8
22 changed files with 134 additions and 157 deletions

View File

@ -1,42 +0,0 @@
[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-tracing.workspace = true
reth-node-optimism.workspace = true
clap = { workspace = true, features = ["derive", "env"] }
[target.'cfg(unix)'.dependencies]
tikv-jemallocator = { workspace = true, optional = true }
[lints]
workspace = true
[[bin]]
name = "op-reth"
path = "src/main.rs"
[features]
default = ["jemalloc"]
jemalloc = ["dep:tikv-jemallocator"]
jemalloc-prof = ["jemalloc", "tikv-jemallocator?/profiling"]
asm-keccak = ["reth-node-optimism/asm-keccak"]
optimism = [
"reth-optimism-cli/optimism",
"reth-node-optimism/optimism",
]