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

2
Cargo.lock generated
View File

@ -5448,13 +5448,11 @@ dependencies = [
"parking_lot 0.12.1",
"paste",
"rand 0.8.5",
"reth-consensus-common",
"reth-interfaces",
"reth-metrics-derive",
"reth-primitives",
"reth-provider",
"reth-rlp",
"ruint",
"serde",
"thiserror",
"tokio",

View File

@ -17,7 +17,7 @@ reth-trie = { path = "../../trie" }
# async
tokio = { version = "1.21", features = ["sync", "macros", "rt-multi-thread"] }
tokio-stream = "0.1"
tokio-stream = { version = "0.1", features = ["sync"] }
# tracing
tracing = "0.1"

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