From bf57fe9835f30b948af3f495494a725484210c4d Mon Sep 17 00:00:00 2001 From: BGluth Date: Tue, 4 Oct 2022 22:07:43 -0600 Subject: [PATCH] Now uses `eth_trie_utils` on `crates.io` --- evm/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evm/Cargo.toml b/evm/Cargo.toml index aec4b439..09a47ee2 100644 --- a/evm/Cargo.toml +++ b/evm/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] plonky2 = { path = "../plonky2", default-features = false, features = ["rand", "timing"] } plonky2_util = { path = "../util" } -eth-trie-utils = { git = "https://github.com/mir-protocol/eth-trie-utils.git", rev = "dd3595b4ba7923f8d465450d210f17a2b4e20f96" } +eth_trie_utils = "0.1.0" anyhow = "1.0.40" env_logger = "0.9.0" ethereum-types = "0.14.0"