chore: rm reth-interfaces from downloaders (#8436)

This commit is contained in:
Matthias Seitz
2024-05-28 18:33:47 +02:00
committed by GitHub
parent de4e0ba041
commit 3b7089782f
15 changed files with 39 additions and 36 deletions

View File

@ -13,14 +13,21 @@ workspace = true
[dependencies]
# reth
reth-interfaces.workspace = true
reth-primitives.workspace = true
reth-network-p2p.workspace = true
reth-tasks.workspace = true
reth-provider.workspace = true
reth-config.workspace = true
reth-consensus.workspace = true
reth-network-types.workspace = true
# optional deps for the test-utils feature
reth-db = { workspace = true, optional = true }
reth-testing-utils = { workspace = true, optional = true }
# eth
alloy-rlp.workspace = true
# async
futures.workspace = true
futures-util.workspace = true
@ -38,17 +45,15 @@ tracing.workspace = true
rayon.workspace = true
thiserror.workspace = true
# optional deps for the test-utils feature
reth-db = { workspace = true, optional = true }
alloy-rlp.workspace = true
tempfile = { workspace = true, optional = true }
itertools.workspace = true
[dev-dependencies]
reth-db = { workspace = true, features = ["test-utils"] }
reth-consensus = { workspace = true, features = ["test-utils"] }
reth-interfaces = { workspace = true, features = ["test-utils"] }
reth-network-p2p = { workspace = true, features = ["test-utils"] }
reth-provider = { workspace = true, features = ["test-utils"] }
reth-testing-utils.workspace = true
reth-tracing.workspace = true
assert_matches.workspace = true
@ -60,5 +65,5 @@ rand.workspace = true
tempfile.workspace = true
[features]
test-utils = ["dep:tempfile", "reth-db/test-utils", "reth-consensus/test-utils", "reth-interfaces/test-utils"]
test-utils = ["dep:tempfile", "reth-db/test-utils", "reth-consensus/test-utils", "reth-network-p2p/test-utils", "reth-testing-utils"]