chore: export exex (#14443)

This commit is contained in:
Matthias Seitz
2025-02-12 12:43:26 +01:00
committed by GitHub
parent 48bffd418f
commit 9f1602c03e
3 changed files with 8 additions and 1 deletions

View File

@ -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"]

View File

@ -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 {