From cbefbfcbb6446f680fdc8ef54702bfd2136fb687 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Thu, 19 Oct 2023 16:22:03 -0600 Subject: [PATCH] use patched revm-primitives for "pure" building --- Cargo.lock | 3 +-- Cargo.toml | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f189b463..ce76fc04 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6678,8 +6678,7 @@ dependencies = [ [[package]] name = "revm-primitives" version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51187b852d9e458816a2e19c81f1dd6c924077e1a8fccd16e4f044f865f299d7" +source = "git+https://github.com/ralexstokes/revm?rev=daf0d2ee8082c474f5c5424379a28ed9d740faa5#daf0d2ee8082c474f5c5424379a28ed9d740faa5" dependencies = [ "alloy-primitives", "alloy-rlp", diff --git a/Cargo.toml b/Cargo.toml index a55e137a..090fd689 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,3 +19,6 @@ reth-interfaces = { git = "https://github.com/paradigmxyz/reth", rev = "5dd5555c reth-revm = { git = "https://github.com/paradigmxyz/reth", rev = "5dd5555c5c7d8e43420e273e7005b8af63a847a5" } reth = { git = "https://github.com/paradigmxyz/reth", rev = "5dd5555c5c7d8e43420e273e7005b8af63a847a5" } revm = "3.5.0" + +[patch.crates-io] +revm-primitives = { git = "https://github.com/ralexstokes/revm", rev = "daf0d2ee8082c474f5c5424379a28ed9d740faa5" }