diff --git a/Cargo.lock b/Cargo.lock index 31d2ed9..990ec5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -949,7 +949,7 @@ dependencies = [ "rayon", "reth-primitives", "reth-trie-common", - "revm-primitives 1.1.2", + "revm-primitives", "serde", "serde_json", "sf-protos", @@ -1264,15 +1264,6 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" -[[package]] -name = "hashbrown" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" -dependencies = [ - "ahash", -] - [[package]] name = "hashbrown" version = "0.14.3" @@ -1518,15 +1509,6 @@ dependencies = [ "sha2", ] -[[package]] -name = "keccak" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" -dependencies = [ - "cpufeatures", -] - [[package]] name = "keccak-asm" version = "0.1.1" @@ -2310,7 +2292,7 @@ dependencies = [ "reth-primitives-traits", "reth-static-file-types", "reth-trie-common", - "revm-primitives 6.0.0", + "revm-primitives", "secp256k1", "serde", "tempfile", @@ -2334,7 +2316,7 @@ dependencies = [ "derive_more", "modular-bitfield", "reth-codecs", - "revm-primitives 6.0.0", + "revm-primitives", "roaring", "serde", "thiserror-no-std", @@ -2367,31 +2349,10 @@ dependencies = [ "nybbles", "reth-codecs", "reth-primitives-traits", - "revm-primitives 6.0.0", + "revm-primitives", "serde", ] -[[package]] -name = "revm-primitives" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "304d998f466ffef72d76c7f20b05bf08a96801736a6fb1fdef47d49a292618df" -dependencies = [ - "auto_impl", - "bitvec", - "bytes", - "derive_more", - "enumn", - "fixed-hash", - "hashbrown 0.13.2", - "hex", - "hex-literal", - "primitive-types", - "rlp", - "ruint", - "sha3", -] - [[package]] name = "revm-primitives" version = "6.0.0" @@ -2697,16 +2658,6 @@ dependencies = [ "digest 0.10.7", ] -[[package]] -name = "sha3" -version = "0.10.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" -dependencies = [ - "digest 0.10.7", - "keccak", -] - [[package]] name = "sha3-asm" version = "0.1.1" diff --git a/Cargo.toml b/Cargo.toml index 17edec1..cd737ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ rand = "0.8.5" rayon = "1.8.0" reth-primitives = { git = "https://github.com/paradigmxyz/reth", version = "1.0.1", tag = "v1.0.1" } reth-trie-common = { git = "https://github.com/paradigmxyz/reth", version = "1.0.1", tag = "v1.0.1" } -revm-primitives = "=1.1.2" +revm-primitives = "=6.0.0" serde = { version = "1.0.196", features = ["derive"] } serde_json = "1.0.108" sf-protos = { git = "https://github.com/semiotic-ai/sf-protos.git", version = "0.1.0" }