From b0e8f1a0d09ad155fbcd8aed1c5a8c6f20679572 Mon Sep 17 00:00:00 2001 From: BGluth Date: Tue, 25 Jun 2024 10:02:50 -0600 Subject: [PATCH] Requested PR changes for #320 --- Cargo.lock | 25 +++++++++++++++++++++++++ Cargo.toml | 1 + 2 files changed, 26 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index f288caab7..4ef8e1ef3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4664,6 +4664,31 @@ version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" +[[package]] +name = "smt_trie" +version = "0.1.0" +dependencies = [ + "bytes", + "enum-as-inner", + "eth_trie", + "ethereum-types", + "hex", + "hex-literal", + "keccak-hash 0.10.0", + "log", + "num-traits", + "parking_lot", + "plonky2", + "pretty_env_logger", + "rand", + "rlp", + "rlp-derive", + "serde", + "serde_json", + "thiserror", + "uint", +] + [[package]] name = "socket2" version = "0.4.10" diff --git a/Cargo.toml b/Cargo.toml index 30ee73a25..5fb681935 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [workspace] members = ["mpt_trie", + "smt_trie", "proof_gen", "trace_decoder", "evm_arithmetization",