Files
reth/crates/stages/Cargo.toml
2022-10-14 13:23:13 +02:00

24 lines
657 B
TOML

[package]
name = "reth-stages"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/foundry-rs/reth"
readme = "README.md"
description = "Staged syncing primitives used in reth."
[dependencies]
reth-primitives = { path = "../primitives" }
reth-db = { path = "../db" }
async-trait = "0.1.57"
thiserror = "1.0.37"
tracing = "0.1.36"
tracing-futures = "0.2.5"
tokio = { version = "1.21.2", features = ["sync"] }
aquamarine = "0.1.12"
[dev-dependencies]
tokio = { version = "*", features = ["rt", "sync", "macros"] }
tokio-stream = "0.1.10"
tempfile = "3.3.0"
reth-db = { path = "../db", features = ["test-utils"] }