chore: export cli from reth ethereum (#14444)

This commit is contained in:
Matthias Seitz
2025-02-12 13:45:55 +01:00
committed by GitHub
parent ac7b5959fb
commit 82903d9fe4
3 changed files with 7 additions and 0 deletions

View File

@ -30,6 +30,7 @@ reth-exex = { workspace = true, optional = true }
# reth-ethereum
reth-ethereum-primitives.workspace = true
reth-ethereum-cli = { workspace = true, optional = true }
reth-ethereum-consensus = { workspace = true, optional = true }
reth-evm-ethereum = { workspace = true, optional = true }
reth-node-ethereum = { workspace = true, optional = true }
@ -71,6 +72,7 @@ test-utils = [
full = ["consensus", "evm", "node", "provider", "rpc", "exex"]
alloy-compat = ["reth-ethereum-primitives/alloy-compat"]
cli = ["dep:reth-ethereum-cli"]
consensus = ["dep:reth-consensus", "dep:reth-consensus-common", "dep:reth-ethereum-consensus"]
evm = ["dep:reth-evm", "dep:reth-evm-ethereum"]
exex = ["provider", "dep:reth-exex"]

View File

@ -19,6 +19,10 @@ pub mod primitives {
pub use reth_primitives_traits::*;
}
/// Re-exported cli types
#[cfg(feature = "cli")]
pub use reth_ethereum_cli as cli;
/// Re-exported consensus types
#[cfg(feature = "consensus")]
pub mod consensus {