2019-08-29 14:46:54 -07:00
|
|
|
[package]
|
|
|
|
name = "zebra-consensus"
|
2021-07-29 12:42:21 -07:00
|
|
|
version = "1.0.0-alpha.14"
|
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]
|
2021-03-24 09:28:25 -07:00
|
|
|
blake2b_simd = "0.5.11"
|
2021-06-22 20:16:22 -07:00
|
|
|
bellman = "0.10.0"
|
|
|
|
bls12_381 = "0.5.0"
|
2020-10-01 02:01:06 -07:00
|
|
|
chrono = "0.4.19"
|
2021-07-02 10:20:47 -07:00
|
|
|
displaydoc = "0.2.2"
|
2021-06-22 20:16:22 -07:00
|
|
|
jubjub = "0.7.0"
|
2021-03-24 09:28:25 -07:00
|
|
|
lazy_static = "1.4.0"
|
2021-06-14 02:01:34 -07:00
|
|
|
once_cell = "1.8"
|
2021-03-24 09:28:25 -07:00
|
|
|
rand = "0.8"
|
2020-08-19 19:25:46 -07:00
|
|
|
serde = { version = "1", features = ["serde_derive"] }
|
2020-07-23 20:17:39 -07:00
|
|
|
|
2021-05-12 14:56:47 -07:00
|
|
|
futures = "0.3.15"
|
2020-10-06 02:01:34 -07:00
|
|
|
futures-util = "0.3.6"
|
2021-01-11 18:28:56 -08:00
|
|
|
metrics = "0.13.0-alpha.8"
|
2021-05-24 03:41:21 -07:00
|
|
|
thiserror = "1.0.25"
|
2021-01-11 22:07:15 -08:00
|
|
|
tokio = { version = "0.3.6", features = ["time", "sync", "stream", "tracing"] }
|
2020-11-19 11:54:20 -08:00
|
|
|
tower = { version = "0.4", features = ["timeout", "util", "buffer"] }
|
2021-05-03 03:49:09 -07:00
|
|
|
tracing = "0.1.26"
|
2021-02-17 02:01:32 -08:00
|
|
|
tracing-futures = "0.2.5"
|
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-10-14 14:06:32 -07:00
|
|
|
zebra-script = { path = "../zebra-script" }
|
2021-03-24 09:28:25 -07:00
|
|
|
wagyu-zcash-parameters = "0.2.0"
|
2020-07-08 04:22:36 -07:00
|
|
|
|
2020-07-08 14:23:00 -07:00
|
|
|
[dev-dependencies]
|
2021-04-14 02:02:13 -07:00
|
|
|
color-eyre = "0.5.11"
|
2021-06-24 17:47:39 -07:00
|
|
|
rand07 = { package = "rand", version = "0.7" }
|
2020-07-09 14:43:44 -07:00
|
|
|
spandoc = "0.2"
|
2021-01-11 22:07:15 -08:00
|
|
|
tokio = { version = "0.3.6", features = ["full"] }
|
2020-06-24 17:14:23 -07:00
|
|
|
tracing-error = "0.1.2"
|
2021-06-28 08:02:08 -07:00
|
|
|
tracing-subscriber = "0.2.19"
|
2020-07-08 14:23:00 -07:00
|
|
|
|
2021-04-27 17:43:00 -07:00
|
|
|
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
|
2021-07-28 16:55:01 -07:00
|
|
|
zebra-state = { path = "../zebra-state", features = ["proptest-impl"] }
|
2020-07-08 14:23:00 -07:00
|
|
|
zebra-test = { path = "../zebra-test/" }
|