librustzcash/zcash_proofs/Cargo.toml

26 lines
512 B
TOML
Raw Normal View History

[package]
name = "zcash_proofs"
version = "0.0.0"
authors = [
"Jack Grigg <jack@z.cash>",
]
readme = "README.md"
2019-08-21 15:11:29 -07:00
edition = "2018"
[dependencies]
bellman = { path = "../bellman" }
blake2b_simd = "0.5"
byteorder = "1"
directories = { version = "1", optional = true }
ff = { path = "../ff" }
pairing = { path = "../pairing" }
rand_core = "0.5.1"
zcash_primitives = { path = "../zcash_primitives" }
[dev-dependencies]
rand_xorshift = "0.2"
[features]
default = ["local-prover"]
local-prover = ["directories"]