feat: initial cli abstraction (#9082)

This commit is contained in:
Matthias Seitz
2024-06-25 13:49:27 +02:00
committed by GitHub
parent 6699c6a3d7
commit 46fdc38833
4 changed files with 41 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ members = [
"crates/blockchain-tree/",
"crates/blockchain-tree-api/",
"crates/chainspec/",
"crates/cli/cli/",
"crates/cli/commands/",
"crates/cli/runner/",
"crates/config/",
@@ -258,6 +259,7 @@ reth-beacon-consensus = { path = "crates/consensus/beacon" }
reth-blockchain-tree = { path = "crates/blockchain-tree" }
reth-blockchain-tree-api = { path = "crates/blockchain-tree-api" }
reth-chainspec = { path = "crates/chainspec" }
reth-cli = { path = "crates/cli/cli" }
reth-cli-commands = { path = "crates/cli/commands" }
reth-cli-runner = { path = "crates/cli/runner" }
reth-codecs = { path = "crates/storage/codecs" }