chore(deps): rm unused deps (#2435)

This commit is contained in:
Matthias Seitz
2023-04-27 16:20:14 +02:00
committed by GitHub
parent 576f33b151
commit 2b7b14ab8c
4 changed files with 4 additions and 9 deletions

View File

@ -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 }

View File

@ -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};