chore: rm unused rpc-engine-api deps (#2053)

This commit is contained in:
Matthias Seitz
2023-03-31 12:07:38 +02:00
committed by GitHub
parent cda66470d1
commit 8e7807138e
3 changed files with 1 additions and 9 deletions

3
Cargo.lock generated
View File

@@ -5114,16 +5114,13 @@ dependencies = [
"assert_matches",
"futures",
"reth-beacon-consensus",
"reth-executor",
"reth-interfaces",
"reth-primitives",
"reth-provider",
"reth-revm",
"reth-rpc-types",
"thiserror",
"tokio",
"tokio-stream",
"tracing",
]
[[package]]

View File

@@ -11,8 +11,6 @@ description = "Implementation of Engine API"
reth-primitives = { path = "../../primitives" }
reth-interfaces = { path = "../../interfaces" }
reth-provider = { path = "../../storage/provider" }
reth-executor = { path = "../../executor" }
reth-revm = { path = "../../revm" }
reth-rpc-types = { path = "../rpc-types" }
reth-beacon-consensus = { path = "../../consensus/beacon" }
@@ -21,9 +19,6 @@ futures = "0.3"
tokio = { version = "1", features = ["sync"] }
tokio-stream = "0.1"
# tracing
tracing = "0.1"
# misc
thiserror = "1.0.37"

View File

@@ -1,5 +1,5 @@
#![warn(missing_docs, unreachable_pub)]
#![deny(unused_must_use, rust_2018_idioms)]
#![deny(unused_must_use, rust_2018_idioms, unused_crate_dependencies)]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))