47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[package]
|
|
name = "zebra-consensus"
|
|
version = "1.0.0-alpha.14"
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
blake2b_simd = "0.5.11"
|
|
bellman = "0.10.0"
|
|
bls12_381 = "0.5.0"
|
|
chrono = "0.4.19"
|
|
displaydoc = "0.2.2"
|
|
jubjub = "0.7.0"
|
|
lazy_static = "1.4.0"
|
|
once_cell = "1.8"
|
|
rand = "0.8"
|
|
serde = { version = "1", features = ["serde_derive"] }
|
|
|
|
futures = "0.3.15"
|
|
futures-util = "0.3.6"
|
|
metrics = "0.13.0-alpha.8"
|
|
thiserror = "1.0.25"
|
|
tokio = { version = "0.3.6", features = ["time", "sync", "stream", "tracing"] }
|
|
tower = { version = "0.4", features = ["timeout", "util", "buffer"] }
|
|
tracing = "0.1.26"
|
|
tracing-futures = "0.2.5"
|
|
|
|
tower-fallback = { path = "../tower-fallback/" }
|
|
tower-batch = { path = "../tower-batch/" }
|
|
zebra-chain = { path = "../zebra-chain" }
|
|
zebra-state = { path = "../zebra-state" }
|
|
zebra-script = { path = "../zebra-script" }
|
|
wagyu-zcash-parameters = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
color-eyre = "0.5.11"
|
|
rand07 = { package = "rand", version = "0.7" }
|
|
spandoc = "0.2"
|
|
tokio = { version = "0.3.6", features = ["full"] }
|
|
tracing-error = "0.1.2"
|
|
tracing-subscriber = "0.2.19"
|
|
|
|
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
|
|
zebra-state = { path = "../zebra-state", features = ["proptest-impl"] }
|
|
zebra-test = { path = "../zebra-test/" }
|