mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
feat: add exex feature to op-reth (#16459)
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@@ -8953,6 +8953,7 @@ dependencies = [
|
||||
"reth-db",
|
||||
"reth-eth-wire",
|
||||
"reth-evm",
|
||||
"reth-exex",
|
||||
"reth-network",
|
||||
"reth-network-api",
|
||||
"reth-node-api",
|
||||
|
||||
@@ -30,6 +30,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-transaction-pool = { workspace = true, optional = true }
|
||||
reth-trie = { workspace = true, optional = true }
|
||||
reth-node-builder = { workspace = true, optional = true }
|
||||
@@ -94,6 +95,7 @@ consensus = [
|
||||
"dep:reth-optimism-consensus",
|
||||
]
|
||||
evm = ["dep:reth-evm", "dep:reth-optimism-evm", "dep:reth-revm"]
|
||||
exex = ["provider", "dep:reth-exex"]
|
||||
node-api = ["dep:reth-node-api", "dep:reth-node-core"]
|
||||
node = [
|
||||
"provider",
|
||||
|
||||
@@ -63,6 +63,10 @@ pub mod evm {
|
||||
pub use reth_revm as revm;
|
||||
}
|
||||
|
||||
/// Re-exported exex types
|
||||
#[cfg(feature = "exex")]
|
||||
pub use reth_exex as exex;
|
||||
|
||||
/// Re-exported from `tasks`.
|
||||
#[cfg(feature = "tasks")]
|
||||
pub mod tasks {
|
||||
|
||||
Reference in New Issue
Block a user