mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: export exex (#14443)
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -7494,6 +7494,7 @@ dependencies = [
|
||||
"reth-ethereum-primitives",
|
||||
"reth-evm",
|
||||
"reth-evm-ethereum",
|
||||
"reth-exex",
|
||||
"reth-network",
|
||||
"reth-node-api",
|
||||
"reth-node-ethereum",
|
||||
|
||||
@ -26,6 +26,7 @@ reth-rpc = { workspace = true, optional = true }
|
||||
reth-rpc-api = { workspace = true, optional = true }
|
||||
reth-rpc-eth-types = { workspace = true, optional = true }
|
||||
reth-rpc-builder = { workspace = true, optional = true }
|
||||
reth-exex = { workspace = true, optional = true }
|
||||
|
||||
# reth-ethereum
|
||||
reth-ethereum-primitives.workspace = true
|
||||
@ -67,11 +68,12 @@ test-utils = [
|
||||
"reth-provider?/test-utils",
|
||||
]
|
||||
|
||||
full = ["consensus", "evm", "node", "provider", "rpc"]
|
||||
full = ["consensus", "evm", "node", "provider", "rpc", "exex"]
|
||||
|
||||
alloy-compat = ["reth-ethereum-primitives/alloy-compat"]
|
||||
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"]
|
||||
node-api = ["dep:reth-node-api"]
|
||||
node = ["provider", "consensus", "evm", "node-api", "dep:reth-node-ethereum", "rpc"]
|
||||
rpc = ["dep:reth-rpc", "dep:reth-rpc-builder", "dep:reth-rpc-api", "dep:reth-rpc-eth-types", "dep:alloy-rpc-types-eth"]
|
||||
|
||||
@ -44,6 +44,10 @@ pub mod evm {
|
||||
pub use reth_evm as primitives;
|
||||
}
|
||||
|
||||
/// Re-exported exex types
|
||||
#[cfg(feature = "exex")]
|
||||
pub use reth_exex as exex;
|
||||
|
||||
/// Re-exported reth network types
|
||||
#[cfg(feature = "network")]
|
||||
pub mod network {
|
||||
|
||||
Reference in New Issue
Block a user