mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(downloader): replace database with header provider (#5472)
This commit is contained in:
@ -12,8 +12,8 @@ description = "Implementations of various block downloaders"
|
||||
# reth
|
||||
reth-interfaces.workspace = true
|
||||
reth-primitives.workspace = true
|
||||
reth-db.workspace = true
|
||||
reth-tasks.workspace = true
|
||||
reth-provider.workspace = true
|
||||
|
||||
# async
|
||||
futures.workspace = true
|
||||
@ -33,6 +33,7 @@ rayon.workspace = true
|
||||
thiserror.workspace = true
|
||||
|
||||
# optional deps for the test-utils feature
|
||||
reth-db = { workspace = true, optional = true }
|
||||
alloy-rlp = { workspace = true, optional = true }
|
||||
tempfile = { workspace = true, optional = true }
|
||||
itertools = { workspace = true, optional = true }
|
||||
@ -50,4 +51,4 @@ itertools.workspace = true
|
||||
tempfile.workspace = true
|
||||
|
||||
[features]
|
||||
test-utils = ["dep:alloy-rlp", "dep:tempfile", "dep:itertools", "reth-interfaces/test-utils"]
|
||||
test-utils = ["dep:alloy-rlp", "dep:tempfile", "dep:itertools", "reth-db/test-utils", "reth-interfaces/test-utils"]
|
||||
|
||||
Reference in New Issue
Block a user