Skip to content

Commit 7b49b75

Browse files
authored
feat: add exex feature to op-reth (#16459)
1 parent 7a7b281 commit 7b49b75

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/optimism/reth/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ reth-rpc = { workspace = true, optional = true }
3030
reth-rpc-api = { workspace = true, optional = true }
3131
reth-rpc-eth-types = { workspace = true, optional = true }
3232
reth-rpc-builder = { workspace = true, optional = true }
33+
reth-exex = { workspace = true, optional = true }
3334
reth-transaction-pool = { workspace = true, optional = true }
3435
reth-trie = { workspace = true, optional = true }
3536
reth-node-builder = { workspace = true, optional = true }
@@ -94,6 +95,7 @@ consensus = [
9495
"dep:reth-optimism-consensus",
9596
]
9697
evm = ["dep:reth-evm", "dep:reth-optimism-evm", "dep:reth-revm"]
98+
exex = ["provider", "dep:reth-exex"]
9799
node-api = ["dep:reth-node-api", "dep:reth-node-core"]
98100
node = [
99101
"provider",

crates/optimism/reth/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ pub mod evm {
6363
pub use reth_revm as revm;
6464
}
6565

66+
/// Re-exported exex types
67+
#[cfg(feature = "exex")]
68+
pub use reth_exex as exex;
69+
6670
/// Re-exported from `tasks`.
6771
#[cfg(feature = "tasks")]
6872
pub mod tasks {

0 commit comments

Comments
 (0)