mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
name = "reth-beacon-consensus"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/paradigmxyz/reth"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-consensus-common = { path = "../common" }
|
|
reth-primitives = { path = "../../primitives" }
|
|
reth-interfaces = { path = "../../interfaces" }
|
|
reth-stages = { path = "../../stages" }
|
|
reth-db = { path = "../../storage/db" }
|
|
reth-rpc-types = { path = "../../rpc/rpc-types" }
|
|
reth-tasks = { path = "../../tasks" }
|
|
|
|
# async
|
|
tokio = { version = "1.21.2", features = ["sync"] }
|
|
tokio-stream = "0.1.10"
|
|
futures = "0.3"
|
|
|
|
# misc
|
|
tracing = "0.1"
|
|
thiserror = "1.0"
|
|
|
|
[dev-dependencies]
|
|
# reth
|
|
reth-interfaces = { path = "../../interfaces", features = ["test-utils"] }
|
|
reth-stages = { path = "../../stages", features = ["test-utils"] }
|
|
reth-executor = { path = "../../executor", features = ["test-utils"] }
|
|
reth-db = { path = "../../storage/db", features = ["test-utils"] }
|
|
reth-provider = { path = "../../storage/provider", features = ["test-utils"] }
|
|
reth-tracing = { path = "../../tracing" }
|
|
|
|
assert_matches = "1.5"
|