mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
* refactor: remove timeout config from downloader The timeout should be controlled by the client implementation. * feat: downloader request retries * test: add concurrent body downloader tests * chore: fmt Co-authored-by: Georgios Konstantopoulos <me@gakonst.com>
24 lines
692 B
TOML
24 lines
692 B
TOML
[package]
|
|
name = "reth-bodies-downloaders"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/foundry-rs/reth"
|
|
readme = "README.md"
|
|
description = "Implementations of various block body downloaders"
|
|
|
|
[dependencies]
|
|
futures-util = "0.3.25"
|
|
reth-interfaces = { path = "../../interfaces" }
|
|
reth-primitives = { path = "../../primitives" }
|
|
reth-eth-wire = { path= "../eth-wire" }
|
|
backon = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5.0"
|
|
once_cell = "1.15.0"
|
|
rand = "0.8.5"
|
|
reth-interfaces = { path = "../../interfaces", features = ["test-utils"] }
|
|
tokio = { version = "1.21.2", features = ["full"] }
|
|
async-trait = "0.1.58"
|
|
futures-util = "0.3.25" |