2019-08-29 14:46:54 -07:00
|
|
|
[package]
|
|
|
|
name = "zebra-consensus"
|
2020-07-24 11:12:23 -07:00
|
|
|
version = "3.0.0-alpha.0"
|
2019-10-08 09:25:59 -07:00
|
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2019-08-29 14:46:54 -07:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-07-07 02:02:09 -07:00
|
|
|
chrono = "0.4.13"
|
2020-07-23 20:17:39 -07:00
|
|
|
color-eyre = "0.5"
|
2020-07-08 14:23:00 -07:00
|
|
|
rand = "0.7"
|
2020-07-09 11:17:10 -07:00
|
|
|
redjubjub = "0.2"
|
2020-07-23 20:17:39 -07:00
|
|
|
|
|
|
|
metrics = "0.12"
|
|
|
|
futures = "0.3.5"
|
|
|
|
futures-util = "0.3.5"
|
2020-07-22 11:02:56 -07:00
|
|
|
tokio = { version = "0.2.22", features = ["time", "sync", "stream", "tracing"] }
|
2020-07-08 14:23:00 -07:00
|
|
|
tower = "0.3"
|
2020-08-04 20:03:42 -07:00
|
|
|
tower-util = "0.3"
|
2020-08-11 10:18:54 -07:00
|
|
|
tracing = "0.1.19"
|
2020-07-08 14:23:00 -07:00
|
|
|
tracing-futures = "0.2.4"
|
2020-08-04 20:03:42 -07:00
|
|
|
once_cell = "1.4"
|
2020-06-11 02:49:32 -07:00
|
|
|
|
2020-08-04 20:03:42 -07:00
|
|
|
tower-fallback = { path = "../tower-fallback/" }
|
2020-07-08 14:23:00 -07:00
|
|
|
tower-batch = { path = "../tower-batch/" }
|
|
|
|
zebra-chain = { path = "../zebra-chain" }
|
|
|
|
zebra-state = { path = "../zebra-state" }
|
2020-07-08 04:22:36 -07:00
|
|
|
|
2020-07-08 14:23:00 -07:00
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.7"
|
2020-07-09 14:43:44 -07:00
|
|
|
spandoc = "0.2"
|
2020-07-08 14:23:00 -07:00
|
|
|
tokio = { version = "0.2", features = ["full"] }
|
2020-06-24 17:14:23 -07:00
|
|
|
tracing-error = "0.1.2"
|
2020-08-11 10:30:50 -07:00
|
|
|
tracing-subscriber = "0.2.11"
|
2020-07-08 14:23:00 -07:00
|
|
|
|
|
|
|
zebra-test = { path = "../zebra-test/" }
|