mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(deps): rm hashbrown dep (#4861)
This commit is contained in:
@ -17,8 +17,6 @@ reth-rpc-types.workspace = true
|
||||
alloy-sol-types.workspace = true
|
||||
|
||||
revm.workspace = true
|
||||
# remove from reth and reexport from revm
|
||||
hashbrown = "0.14"
|
||||
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
thiserror = { workspace = true, optional = true }
|
||||
|
||||
@ -1,10 +1,9 @@
|
||||
use hashbrown::{HashMap, HashSet};
|
||||
use reth_primitives::{AccessList, AccessListItem, Address, B256};
|
||||
use revm::{
|
||||
interpreter::{opcode, InstructionResult, Interpreter},
|
||||
Database, EVMData, Inspector,
|
||||
};
|
||||
use std::collections::BTreeSet;
|
||||
use std::collections::{BTreeSet, HashMap, HashSet};
|
||||
|
||||
/// An [Inspector] that collects touched accounts and storage slots.
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user