pirate-librustzcash/zcash_proofs/Cargo.toml
Jack Grigg 54ef63bace
Place zcash_proofs::prover::LocalTxProver behind a feature flag
This enables zcash_proofs to be compiled to WASM, which the directories
crate doesn't support.
2019-07-27 00:28:03 +01:00

22 lines
476 B
TOML

[package]
name = "zcash_proofs"
version = "0.0.0"
authors = [
"Jack Grigg <jack@z.cash>",
]
[dependencies]
bellman = { path = "../bellman" }
blake2b_simd = "0.5"
byteorder = "1"
directories = { version = "1", optional = true }
ff = { path = "../ff" }
pairing = { path = "../pairing" }
rand_os = "0.2"
sapling-crypto = { path = "../sapling-crypto" }
zcash_primitives = { path = "../zcash_primitives" }
[features]
default = ["local-prover"]
local-prover = ["directories"]