mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "reth-stages"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/paradigmxyz/reth"
|
|
readme = "README.md"
|
|
description = "Staged syncing primitives used in reth."
|
|
|
|
[dependencies]
|
|
# reth libs
|
|
reth-primitives = { path = "../primitives" }
|
|
reth-interfaces = { path = "../interfaces" }
|
|
reth-db = { path = "../db" }
|
|
reth-executor = { path = "../executor" }
|
|
reth-rlp = { path = "../common/rlp" }
|
|
|
|
#async
|
|
tokio = { version = "1.21.2", features = ["sync"] }
|
|
|
|
async-trait = "0.1.57"
|
|
thiserror = "1.0.37"
|
|
tracing = "0.1.36"
|
|
tracing-futures = "0.2.5"
|
|
aquamarine = "0.1.12"
|
|
metrics = "0.20.1"
|
|
futures-util = "0.3.25"
|
|
itertools = "0.10.5"
|
|
rayon = "1.6.0"
|
|
|
|
[dev-dependencies]
|
|
reth-db = { path = "../db", features = ["test-utils"] }
|
|
reth-interfaces = { path = "../interfaces", features = ["test-utils"] }
|
|
reth-bodies-downloaders = { path = "../net/bodies-downloaders" }
|
|
# TODO(onbjerg): We only need this for [BlockBody]
|
|
reth-eth-wire = { path = "../net/eth-wire" }
|
|
reth-headers-downloaders = { path = "../net/headers-downloaders" }
|
|
tokio = { version = "*", features = ["rt", "sync", "macros"] }
|
|
tokio-stream = "0.1.10"
|
|
tempfile = "3.3.0"
|
|
assert_matches = "1.5.0"
|
|
rand = "0.8.5"
|