From 765808adb4cb4b6fdd388f05a9e855eca85c4e9a Mon Sep 17 00:00:00 2001 From: refcell Date: Thu, 17 Oct 2024 21:09:01 -0400 Subject: [PATCH] fix: deps --- Cargo.lock | 2 +- Cargo.toml | 28 ++++++++++++++-------------- crates/rollup/Cargo.toml | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7ba37b5..36b9105 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9190,7 +9190,7 @@ dependencies = [ "serde_json", "superchain", "tokio", - "tower 0.4.13", + "tower 0.5.1", "tracing", "tracing-subscriber", "url", diff --git a/Cargo.toml b/Cargo.toml index 153f33d..c62e48f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,9 +34,9 @@ op-alloy-provider = { git = "https://github.com/alloy-rs/op-alloy", branch = "ma [workspace.dependencies] # Workspace +ser = { path = "crates/ser" } op-net = { path = "crates/net" } rollup = { path = "crates/rollup" } -ser = { path = "crates/ser" } kona-providers-local = { path = "crates/providers-local" } # Kona @@ -49,7 +49,6 @@ kona-providers-alloy = { git = "https://github.com/anton-rs/kona", branch = "mai superchain = { git = "https://github.com/anton-rs/superchain", branch = "main", default-features = false } # Alloy -alloy-transport-http = { version = "0.4.2", default-features = false, features = ["jwt-auth"] } alloy-rlp = { version = "0.3.8", default-features = false } alloy-eips = { version = "0.4", default-features = false } alloy-signer = { version = "0.4.2", default-features = false } @@ -61,34 +60,35 @@ alloy-rpc-types = { version = "0.4.2", default-features = false } alloy-consensus = { version = "0.4.2", default-features = false } alloy-primitives = { version = "0.8.8", default-features = false } alloy-rpc-client = { version = "0.4.2", default-features = false } +alloy-transport-http = { version = "0.4.2", default-features = false } alloy-rpc-types-engine = { version = "0.4.2", default-features = false } # Op Alloy op-alloy-genesis = { version = "0.4.0", default-features = false } +op-alloy-provider = { version = "0.4.0", default-features = false } op-alloy-protocol = { version = "0.4.0", default-features = false } op-alloy-consensus = { version = "0.4.0", default-features = false } op-alloy-rpc-types = { version = "0.4.0", default-features = false } op-alloy-rpc-jsonrpsee = { version = "0.4.0", default-features = false } -op-alloy-provider = { version = "0.4.0", default-features = false } op-alloy-rpc-types-engine = { version = "0.4.0", default-features = false } # Reth reth = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } -reth-chainspec = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } +reth-evm = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } +reth-revm = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } +reth-exex = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } reth-discv5 = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } -reth-execution-errors = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } -reth-execution-types = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } -reth-exex = { git = "https://github.com/paradigmxyz/reth", features = ["serde"], rev = "a846cbd" } -reth-network-peers = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } +reth-tracing = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } +reth-provider = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } reth-node-api = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } -reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } +reth-chainspec = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } -reth-provider = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } -reth-revm = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } -reth-evm = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } -reth-tracing = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } +reth-network-peers = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } +reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } +reth-execution-types = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } +reth-execution-errors = { git = "https://github.com/paradigmxyz/reth", rev = "a846cbd" } # Tokio tokio = { version = "1.21", default-features = false } @@ -125,7 +125,7 @@ async-trait = "0.1.83" hashbrown = "0.15.0" parking_lot = "0.12.3" unsigned-varint = "0.8.0" -tower = "0.4" +tower = "0.5" http-body-util = "0.1.2" tracing-subscriber = "0.3.18" rand = { version = "0.8.5", default-features = false } diff --git a/crates/rollup/Cargo.toml b/crates/rollup/Cargo.toml index a7e916a..ce337c5 100644 --- a/crates/rollup/Cargo.toml +++ b/crates/rollup/Cargo.toml @@ -21,7 +21,7 @@ alloy-eips.workspace = true alloy-primitives.workspace = true alloy-provider = { workspace = true, features = ["ipc"] } alloy-transport.workspace = true -alloy-transport-http.workspace = true +alloy-transport-http = { workspace = true, features = ["jwt-auth"] } alloy-network.workspace = true alloy-consensus.workspace = true alloy-rpc-types = { workspace = true, features = ["ssz"] } @@ -39,9 +39,9 @@ superchain = { workspace = true, default-features = false } # Reth reth.workspace = true -reth-exex.workspace = true reth-node-api.workspace = true reth-execution-types.workspace = true +reth-exex = { workspace = true, features = ["serde"] } # Telemetry tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }