Skip to content

Commit

Permalink
More changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ferranbt committed Jan 13, 2025
1 parent d25de72 commit c28bdf4
Show file tree
Hide file tree
Showing 8 changed files with 606 additions and 17 deletions.
26 changes: 26 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ reth-tasks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.2" }
reth-ethereum-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.2" }
reth-payload-builder-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.2" }
reth-payload-util = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.2" }
reth-rpc-layer = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.2" }

# version is copied from reth "v1.1.2" dependencies
revm = { version = "18.0.0", features = [
Expand All @@ -105,7 +106,7 @@ ethereum_ssz = "0.8"
alloy-primitives = { version = "0.8.11", default-features = false }
alloy-rlp = "0.3.4"
alloy-chains = "0.1.33"
alloy-provider = { version = "0.6.4", features = ["ipc", "pubsub"] }
alloy-provider = { version = "0.6.4", features = ["ipc", "pubsub", "engine-api"] }
alloy-pubsub = { version = "0.6.4" }
alloy-eips = { version = "0.6.4" }
alloy-rpc-types = { version = "0.6.4" }
Expand All @@ -117,11 +118,14 @@ alloy-transport = { version = "0.6.4" }
alloy-node-bindings = { version = "0.6.4" }
alloy-consensus = { version = "0.6.4", features = ["kzg"] }
op-alloy-consensus = { version = "0.6.8", features = ["kzg"] }
op-alloy-provider = { version = "0.6.8" }
op-alloy-rpc-types-engine = { version = "0.6.8" }
alloy-serde = { version = "0.6.4" }
alloy-rpc-types-beacon = { version = "0.6.4", features = ["ssz"] }
alloy-rpc-types-engine = { version = "0.6.4", features = ["ssz"] }
alloy-rpc-types-eth = { version = "0.6.4" }
alloy-signer-local = { version = "0.6.4" }
alloy-rpc-client = { version = "0.6.4" }
alloy-genesis = { version = "0.6.4" }
alloy-trie = { version = "0.7" }

Expand Down
14 changes: 14 additions & 0 deletions crates/op-rbuilder2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ reth-ethereum-payload-builder.workspace = true
reth-provider.workspace = true
reth-revm.workspace = true
reth-trie.workspace = true
reth-rpc-layer.workspace = true
reth-payload-builder-primitives.workspace = true
reth-payload-util.workspace = true
reth-transaction-pool.workspace = true
Expand All @@ -36,12 +37,21 @@ alloy-eips.workspace = true
alloy-rpc-types-beacon.workspace = true
alloy-rpc-types-engine.workspace = true
op-alloy-consensus.workspace = true
op-alloy-provider.workspace = true
op-alloy-rpc-types-engine.workspace = true
alloy-transport-http.workspace = true
alloy-rpc-types-eth.workspace = true
alloy-rpc-client.workspace = true
alloy-transport.workspace = true
alloy-network.workspace = true

revm.workspace = true

tracing.workspace = true
futures-util = "0.3.31"
eyre.workspace = true
alloy-provider.workspace = true
tower = "0.4"

tokio.workspace = true
jsonrpsee = { workspace = true }
Expand Down Expand Up @@ -84,3 +94,7 @@ optimism = [
[[bin]]
name = "op-rbuilder2"
path = "src/main.rs"

[[bin]]
name = "tester"
path = "src/tester/tester.rs"
Loading

0 comments on commit c28bdf4

Please sign in to comment.