librustzcash/zcash_proofs/Cargo.toml

34 lines
927 B
TOML
Raw Normal View History

[package]
name = "zcash_proofs"
2019-10-07 20:10:30 -07:00
description = "Zcash zk-SNARK circuits and proving APIs"
version = "0.2.0"
authors = [
"Jack Grigg <jack@z.cash>",
]
2019-10-07 20:10:30 -07:00
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
2019-10-07 20:10:30 -07:00
license = "MIT OR Apache-2.0"
2019-08-21 15:11:29 -07:00
edition = "2018"
[dependencies]
bellman = { version = "0.6", path = "../bellman", default-features = false, features = ["groth16"] }
blake2b_simd = "0.5"
byteorder = "1"
directories = { version = "1", optional = true }
ff = { version = "0.6", path = "../ff" }
pairing = { version = "0.16", path = "../pairing" }
rand_core = "0.5.1"
zcash_primitives = { version = "0.2", path = "../zcash_primitives" }
[dev-dependencies]
rand_xorshift = "0.2"
[features]
default = ["local-prover", "multicore"]
local-prover = ["directories"]
multicore = ["bellman/multicore"]
2019-10-07 20:10:30 -07:00
[badges]
maintenance = { status = "actively-developed" }