From 8e7807138e71837abdbe89108304992e6e0a280a Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Fri, 31 Mar 2023 12:07:38 +0200 Subject: [PATCH] chore: rm unused rpc-engine-api deps (#2053) --- Cargo.lock | 3 --- crates/rpc/rpc-engine-api/Cargo.toml | 5 ----- crates/rpc/rpc-engine-api/src/lib.rs | 2 +- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2949777c2..665a8f008 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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]] diff --git a/crates/rpc/rpc-engine-api/Cargo.toml b/crates/rpc/rpc-engine-api/Cargo.toml index 95080375c..c289093b0 100644 --- a/crates/rpc/rpc-engine-api/Cargo.toml +++ b/crates/rpc/rpc-engine-api/Cargo.toml @@ -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" diff --git a/crates/rpc/rpc-engine-api/src/lib.rs b/crates/rpc/rpc-engine-api/src/lib.rs index b97f1b6fa..bf6a568ea 100644 --- a/crates/rpc/rpc-engine-api/src/lib.rs +++ b/crates/rpc/rpc-engine-api/src/lib.rs @@ -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))