From 6c3dfb102c277f9877eacdffce7b0eb2e9ac220e 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..435176f7 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=ee6b4a772d4744c524fd2387c6805095fc98e751#ee6b4a772d4744c524fd2387c6805095fc98e751" dependencies = [ "alloy-primitives", "alloy-rlp", diff --git a/Cargo.toml b/Cargo.toml index a55e137a..65ee0248 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 = "ee6b4a772d4744c524fd2387c6805095fc98e751" }