37 lines
847 B
TOML
37 lines
847 B
TOML
[package]
|
|
name = "zebra-consensus"
|
|
version = "3.0.0-alpha.0"
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.13"
|
|
color-eyre = "0.5"
|
|
rand = "0.7"
|
|
redjubjub = "0.2"
|
|
|
|
metrics = "0.12"
|
|
futures = "0.3.5"
|
|
futures-util = "0.3.5"
|
|
tokio = { version = "0.2.22", features = ["time", "sync", "stream", "tracing"] }
|
|
tower = "0.3"
|
|
tower-util = "0.3"
|
|
tracing = "0.1.19"
|
|
tracing-futures = "0.2.4"
|
|
once_cell = "1.4"
|
|
|
|
tower-fallback = { path = "../tower-fallback/" }
|
|
tower-batch = { path = "../tower-batch/" }
|
|
zebra-chain = { path = "../zebra-chain" }
|
|
zebra-state = { path = "../zebra-state" }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7"
|
|
spandoc = "0.2"
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
tracing-error = "0.1.2"
|
|
tracing-subscriber = "0.2.11"
|
|
|
|
zebra-test = { path = "../zebra-test/" }
|