chore(deps): clean up reth-stages deps (#1682)

This commit is contained in:
Roman Krasiuk
2023-03-09 12:49:33 +02:00
committed by GitHub
parent d0b1e0aa02
commit 17e8ce48dc
2 changed files with 2 additions and 10 deletions

3
Cargo.lock generated
View File

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

View File

@@ -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"]