[package] name = "reth-downloaders" version = "0.1.0" edition.workspace = true rust-version.workspace = true license.workspace = true homepage.workspace = true repository.workspace = true description = "Implementations of various block downloaders" [dependencies] # reth reth-interfaces = { path = "../../interfaces" } reth-primitives = { path = "../../primitives" } reth-db = { path = "../../storage/db" } reth-tasks = { path = "../../tasks" } reth-metrics = { path = "../../metrics" } # async futures = "0.3" futures-util = "0.3.25" pin-project = "1.0" tokio = { version = "1.0", features = ["sync"] } tokio-stream = "0.1" tokio-util = { version = "0.7", features = ["codec"] } # misc tracing = { workspace = true } rayon = "1.6.0" thiserror = "1" # optional deps for the test-utils feature reth-rlp = { path = "../../rlp", optional = true } tempfile = { version = "3.3", optional = true } itertools = { version = "0.10", optional = true } [dev-dependencies] reth-db = { path = "../../storage/db", features = ["test-utils"] } reth-interfaces = { path = "../../interfaces", features = ["test-utils"] } reth-tracing = { path = "../../tracing" } assert_matches = "1.5.0" tokio = { version = "1", features = ["macros", "rt-multi-thread"] } reth-rlp = { path = "../../rlp" } itertools = "0.10" tempfile = "3.3" [features] test-utils = ["dep:reth-rlp", "dep:tempfile", "dep:itertools"]