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:
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -7490,6 +7490,7 @@ dependencies = [
|
|||||||
"reth-consensus",
|
"reth-consensus",
|
||||||
"reth-consensus-common",
|
"reth-consensus-common",
|
||||||
"reth-db",
|
"reth-db",
|
||||||
|
"reth-ethereum-cli",
|
||||||
"reth-ethereum-consensus",
|
"reth-ethereum-consensus",
|
||||||
"reth-ethereum-primitives",
|
"reth-ethereum-primitives",
|
||||||
"reth-evm",
|
"reth-evm",
|
||||||
|
|||||||
@ -30,6 +30,7 @@ reth-exex = { workspace = true, optional = true }
|
|||||||
|
|
||||||
# reth-ethereum
|
# reth-ethereum
|
||||||
reth-ethereum-primitives.workspace = true
|
reth-ethereum-primitives.workspace = true
|
||||||
|
reth-ethereum-cli = { workspace = true, optional = true }
|
||||||
reth-ethereum-consensus = { workspace = true, optional = true }
|
reth-ethereum-consensus = { workspace = true, optional = true }
|
||||||
reth-evm-ethereum = { workspace = true, optional = true }
|
reth-evm-ethereum = { workspace = true, optional = true }
|
||||||
reth-node-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"]
|
full = ["consensus", "evm", "node", "provider", "rpc", "exex"]
|
||||||
|
|
||||||
alloy-compat = ["reth-ethereum-primitives/alloy-compat"]
|
alloy-compat = ["reth-ethereum-primitives/alloy-compat"]
|
||||||
|
cli = ["dep:reth-ethereum-cli"]
|
||||||
consensus = ["dep:reth-consensus", "dep:reth-consensus-common", "dep:reth-ethereum-consensus"]
|
consensus = ["dep:reth-consensus", "dep:reth-consensus-common", "dep:reth-ethereum-consensus"]
|
||||||
evm = ["dep:reth-evm", "dep:reth-evm-ethereum"]
|
evm = ["dep:reth-evm", "dep:reth-evm-ethereum"]
|
||||||
exex = ["provider", "dep:reth-exex"]
|
exex = ["provider", "dep:reth-exex"]
|
||||||
|
|||||||
@ -19,6 +19,10 @@ pub mod primitives {
|
|||||||
pub use reth_primitives_traits::*;
|
pub use reth_primitives_traits::*;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Re-exported cli types
|
||||||
|
#[cfg(feature = "cli")]
|
||||||
|
pub use reth_ethereum_cli as cli;
|
||||||
|
|
||||||
/// Re-exported consensus types
|
/// Re-exported consensus types
|
||||||
#[cfg(feature = "consensus")]
|
#[cfg(feature = "consensus")]
|
||||||
pub mod consensus {
|
pub mod consensus {
|
||||||
|
|||||||
Reference in New Issue
Block a user