mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Alessandro Mazza <121622391+alessandromazza98@users.noreply.github.com> Co-authored-by: Supernovahs.eth <91280922+supernovahs@users.noreply.github.com> Co-authored-by: Oliver Nordbjerg <hi@notbjerg.me>
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[package]
|
|
name = "reth-downloaders"
|
|
version.workspace = true
|
|
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.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-db.workspace = true
|
|
reth-tasks.workspace = true
|
|
|
|
# async
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
pin-project.workspace = true
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tokio-stream.workspace = true
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
|
|
# metrics
|
|
reth-metrics.workspace = true
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
tracing.workspace = true
|
|
rayon.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
# optional deps for the test-utils feature
|
|
alloy-rlp = { workspace = true, optional = true }
|
|
tempfile = { version = "3.3", optional = true }
|
|
itertools = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
reth-db = { workspace = true, features = ["test-utils"] }
|
|
reth-interfaces = { workspace = true, features = ["test-utils"] }
|
|
reth-tracing = { path = "../../tracing" }
|
|
|
|
assert_matches.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
alloy-rlp.workspace = true
|
|
itertools.workspace = true
|
|
|
|
tempfile = "3.3"
|
|
|
|
[features]
|
|
test-utils = ["dep:alloy-rlp", "dep:tempfile", "dep:itertools"]
|