feat: add task header downloader (#958)

This commit is contained in:
Matthias Seitz
2023-01-25 12:32:28 +01:00
committed by GitHub
parent d08aa94f5d
commit 6c37b0aa1b
8 changed files with 480 additions and 229 deletions

View File

@ -18,6 +18,9 @@ reth-metrics-derive = { path = "../../metrics/metrics-derive" }
# async
futures = "0.3"
futures-util = "0.3.25"
pin-project = "1.0"
tokio = { version = "1.0", features = ["sync"] }
tokio-stream = "0.1"
# misc
tracing = "0.1.37"
@ -30,5 +33,4 @@ reth-tracing = { path = "../../tracing" }
async-trait = "0.1.58"
assert_matches = "1.5.0"
once_cell = "1.17.0"
tokio = { version = "1.21.2", features = ["full"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }