mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
79 lines
2.0 KiB
TOML
79 lines
2.0 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"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-config.workspace = true
|
|
reth-consensus.workspace = true
|
|
reth-network-p2p.workspace = true
|
|
reth-network-peers.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-storage-api.workspace = true
|
|
reth-tasks.workspace = true
|
|
|
|
# optional deps for the test-utils feature
|
|
reth-db = { workspace = true, optional = true }
|
|
reth-db-api = { workspace = true, optional = true }
|
|
reth-testing-utils = { workspace = true, optional = true }
|
|
|
|
# eth
|
|
alloy-rlp.workspace = true
|
|
|
|
# async
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
pin-project.workspace = true
|
|
tokio = { workspace = true, features = ["sync", "fs", "io-util"] }
|
|
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
|
|
|
|
tempfile = { workspace = true, optional = true }
|
|
itertools.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-chainspec.workspace = true
|
|
reth-db = { workspace = true, features = ["test-utils"] }
|
|
reth-db-api.workspace = true
|
|
reth-consensus = { workspace = true, features = ["test-utils"] }
|
|
reth-network-p2p = { workspace = true, features = ["test-utils"] }
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-testing-utils.workspace = true
|
|
reth-tracing.workspace = true
|
|
|
|
assert_matches.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
alloy-rlp.workspace = true
|
|
itertools.workspace = true
|
|
rand.workspace = true
|
|
|
|
tempfile.workspace = true
|
|
|
|
[features]
|
|
test-utils = [
|
|
"dep:tempfile",
|
|
"dep:reth-db-api",
|
|
"reth-db/test-utils",
|
|
"reth-consensus/test-utils",
|
|
"reth-network-p2p/test-utils",
|
|
"reth-testing-utils",
|
|
]
|