mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(deps): rm unused deps (#2435)
This commit is contained in:
@ -18,7 +18,6 @@ normal = [
|
||||
[dependencies]
|
||||
|
||||
# reth
|
||||
reth-consensus-common = { path = "../consensus/common" }
|
||||
reth-primitives = { path = "../primitives" }
|
||||
reth-provider = { path = "../storage/provider" }
|
||||
reth-interfaces = { path = "../interfaces" }
|
||||
@ -43,10 +42,6 @@ fnv = "1.0.7"
|
||||
bitflags = "1.3"
|
||||
auto_impl = "1.0"
|
||||
|
||||
# ruint
|
||||
# Using the uint! requires the crate to be imported
|
||||
ruint = "1.7.0"
|
||||
|
||||
# testing
|
||||
rand = { version = "0.8", optional = true }
|
||||
paste = { version = "1.0", optional = true }
|
||||
|
||||
@ -4,7 +4,8 @@
|
||||
rust_2018_idioms,
|
||||
unreachable_pub,
|
||||
missing_debug_implementations,
|
||||
rustdoc::broken_intra_doc_links
|
||||
rustdoc::broken_intra_doc_links,
|
||||
unused_crate_dependencies
|
||||
)]
|
||||
#![doc(test(
|
||||
no_crate_inject,
|
||||
@ -97,6 +98,7 @@ use crate::{
|
||||
pool::PoolInner,
|
||||
traits::{NewTransactionEvent, PoolSize},
|
||||
};
|
||||
use aquamarine as _;
|
||||
use reth_primitives::{Address, TxHash, U256};
|
||||
use reth_provider::StateProviderFactory;
|
||||
use std::{collections::HashMap, sync::Arc};
|
||||
|
||||
Reference in New Issue
Block a user