From 0e1457d7525591e13683a7ff0443e6b46a0773f4 Mon Sep 17 00:00:00 2001 From: refcell Date: Sat, 22 Jun 2024 19:04:30 -0400 Subject: [PATCH] chore: pin op-alloy-consensus (#304) --- Cargo.lock | 3 ++- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ef87317e..cde96ccfc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2089,7 +2089,8 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "op-alloy-consensus" version = "0.1.0" -source = "git+https://github.com/alloy-rs/op-alloy#97cca5624dc3db8631ff7866e091876fd2fedd25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e17dfa6c70fdf14ea5199cca1e1d37e10adf4b68f28b6e94e600f28c0846e2" dependencies = [ "alloy-consensus", "alloy-eips", diff --git a/Cargo.toml b/Cargo.toml index a5c612152..41ad32cc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ async-trait = "0.1.80" 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 = { git = "https://github.com/alloy-rs/op-alloy", version = "0.1.0", default-features = false } +op-alloy-consensus = { version = "0.1.0", default-features = false } alloy-eips = { version = "0.1", default-features = false } revm = { git = "https://github.com/bluealloy/revm", tag = "v37", version = "10.0.0", default-features = false }