From 8bc08997eb7f61fa33abb682134b302996c26980 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Wed, 20 Dec 2023 14:42:16 +0100 Subject: [PATCH] unpath --- Cargo.lock | 2 ++ crates/primitives/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 4b038f5948d46..69fa5a9dcb744 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -258,6 +258,8 @@ dependencies = [ [[package]] name = "alloy-trie" version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7b13840ded510d1cecf2722a84b8265424d172d4fa5552944ce339a307dc9d6" dependencies = [ "alloy-primitives", "alloy-rlp", diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 7782b9217e5e5..288d603bd9fe2 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -19,7 +19,7 @@ revm-primitives = { workspace = true, features = ["serde"] } # ethereum alloy-primitives = { workspace = true, features = ["rand", "rlp"] } alloy-rlp = { workspace = true, features = ["arrayvec"] } -alloy-trie = { version = "0.1", path = "../../../../alloy-rs/trie", features = ["serde"] } +alloy-trie = { version = "0.1", features = ["serde"] } ethers-core = { workspace = true, default-features = false, optional = true } nybbles = { version = "0.1", features = ["serde", "rlp"] }