mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
34 lines
853 B
TOML
34 lines
853 B
TOML
[package]
|
|
name = "reth-downloaders"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/paradigmxyz/reth"
|
|
readme = "README.md"
|
|
description = "Implementations of various block downloaders"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-interfaces = { path = "../../interfaces" }
|
|
reth-primitives = { path = "../../primitives" }
|
|
reth-eth-wire = { path= "../eth-wire" }
|
|
reth-db = { path = "../../storage/db" }
|
|
|
|
# async
|
|
futures = "0.3"
|
|
futures-util = "0.3.25"
|
|
|
|
# misc
|
|
tracing = "0.1.37"
|
|
thiserror = "1.0"
|
|
|
|
[dev-dependencies]
|
|
reth-db = { path = "../../storage/db", features = ["test-utils"] }
|
|
reth-interfaces = { path = "../../interfaces", features = ["test-utils"] }
|
|
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"] }
|