Skip to content

Commit

Permalink
fix(deps): Bump Alloy Dependencies (#409)
Browse files Browse the repository at this point in the history
* fix(deps): Bump Alloy Dependencies

* fix(examples): let trusted-sync use superchain-registry for rollup config
  • Loading branch information
refcell authored Aug 1, 2024
1 parent 4c367d8 commit 035f0b8
Show file tree
Hide file tree
Showing 13 changed files with 134 additions and 72 deletions.
134 changes: 98 additions & 36 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ async-trait = "0.1.80"
# Ethereum
alloy-primitives = { version = "0.7.6", default-features = false }
alloy-rlp = { version = "0.3.5", default-features = false }
alloy-consensus = { version = "0.1", default-features = false }
op-alloy-consensus = { version = "=0.1.2", default-features = false }
alloy-eips = { version = "0.1", default-features = false }
alloy-consensus = { version = "0.2", default-features = false }
op-alloy-consensus = { version = "0.1.4", default-features = false }
alloy-eips = { version = "0.2", default-features = false }
revm = { git = "https://github.com/bluealloy/revm", tag = "v37", version = "10.0.0", default-features = false }

[profile.dev]
Expand Down
8 changes: 4 additions & 4 deletions bin/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ kona-mpt = { path = "../../crates/mpt", version = "0.0.2" }
kona-derive = { path = "../../crates/derive", version = "0.0.2", features = ["online"] }

# external
alloy-provider = { version = "0.1" }
alloy-transport-http = { version = "0.1" }
alloy-rpc-client = { version = "0.1" }
alloy-rpc-types = { version = "0.1" }
alloy-provider = { version = "0.2" }
alloy-transport-http = { version = "0.2" }
alloy-rpc-client = { version = "0.2" }
alloy-rpc-types = { version = "0.2" }
reqwest = "0.12"
tokio = { version = "1.37.0", features = ["full"] }
futures = "0.3"
Expand Down
16 changes: 8 additions & 8 deletions crates/derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ serde = { version = "1.0.203", default-features = false, features = ["derive"],
# `online` feature dependencies
c-kzg = { version = "1.0.2", default-features = false, optional = true }
sha2 = { version = "0.10.8", default-features = false, optional = true }
alloy-transport = { version = "0.1", default-features = false, optional = true }
alloy-provider = { version = "0.1", default-features = false, optional = true }
alloy-transport-http = { version = "0.1", optional = true }
alloy-rpc-types = { version = "0.1", default-features = false, optional = true }
alloy-transport = { version = "0.2", default-features = false, optional = true }
alloy-provider = { version = "0.2", default-features = false, optional = true }
alloy-transport-http = { version = "0.2", optional = true }
alloy-rpc-types = { version = "0.2", default-features = false, optional = true }
serde_json = { version = "1.0.94", default-features = false, optional = true }
reqwest = { version = "0.12.4", default-features = false, optional = true }

Expand All @@ -53,16 +53,16 @@ lazy_static = { version = "1.5.0", optional = true }
prometheus = { version = "0.13.4", features = ["process"], optional = true }

# `test-utils` feature dependencies
alloy-node-bindings = { version = "0.1", default-features = false, optional = true }
alloy-node-bindings = { version = "0.2", default-features = false, optional = true }
tracing-subscriber = { version = "0.3.18", optional = true }
alloy-rpc-client = { version = "0.1", default-features = false, optional = true }
alloy-rpc-client = { version = "0.2", default-features = false, optional = true }

[dev-dependencies]
tokio = { version = "1.38", features = ["full"] }
proptest = "1.4.0"
tracing-subscriber = "0.3.18"
alloy-node-bindings = { version = "0.1", default-features = false }
alloy-rpc-client = { version = "0.1", default-features = false }
alloy-node-bindings = { version = "0.2", default-features = false }
alloy-rpc-client = { version = "0.2", default-features = false }
serde_json = { version = "1.0.117", default-features = false }

[features]
Expand Down
Loading

0 comments on commit 035f0b8

Please sign in to comment.