mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: export cli from reth ethereum (#14444)
This commit is contained in:
@ -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"]
|
||||
|
||||
@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user