From 17e8ce48dc4ccc480a568c30ff678f616544fd1d Mon Sep 17 00:00:00 2001 From: Roman Krasiuk Date: Thu, 9 Mar 2023 12:49:33 +0200 Subject: [PATCH] chore(deps): clean up `reth-stages` deps (#1682) --- Cargo.lock | 3 --- crates/stages/Cargo.toml | 9 ++------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fe8328691c..b1c71ef191 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5100,16 +5100,13 @@ dependencies = [ "reth-metrics-derive", "reth-primitives", "reth-provider", - "reth-revm", "reth-rlp", - "reth-staged-sync", "serde", "tempfile", "thiserror", "tokio", "tokio-stream", "tracing", - "triehash", ] [[package]] diff --git a/crates/stages/Cargo.toml b/crates/stages/Cargo.toml index f08754b58a..3b1970bd71 100644 --- a/crates/stages/Cargo.toml +++ b/crates/stages/Cargo.toml @@ -14,11 +14,9 @@ normal = [ ] [dependencies] -# reth libs +# reth reth-primitives = { path = "../primitives" } reth-interfaces = { path = "../interfaces" } -reth-revm = { path = "../revm" } -reth-rlp = { path = "../rlp" } reth-db = { path = "../storage/db" } reth-provider = { path = "../storage/provider" } reth-metrics-derive = { path = "../metrics/metrics-derive" } @@ -54,6 +52,7 @@ reth-interfaces = { path = "../interfaces", features = ["test-utils"] } reth-downloaders = { path = "../net/downloaders" } reth-eth-wire = { path = "../net/eth-wire" } # TODO(onbjerg): We only need this for [BlockBody] reth-executor = { path = "../executor" } +reth-rlp = { path = "../rlp" } tokio = { version = "*", features = ["rt", "sync", "macros"] } tempfile = "3.3.0" assert_matches = "1.5.0" @@ -67,10 +66,6 @@ proptest = { version = "1.0" } arbitrary = { version = "1.1.7", features = ["derive"] } eyre = "0.6.8" -# trie -reth-staged-sync = { path = "../staged-sync" } -triehash = "0.8" - [features] default = ["serde"] serde = ["dep:serde"]