2018-08-23 15:15:22 -07:00
|
|
|
[package]
|
|
|
|
name = "zcash_proofs"
|
2019-10-07 20:10:30 -07:00
|
|
|
description = "Zcash zk-SNARK circuits and proving APIs"
|
2020-09-09 13:41:19 -07:00
|
|
|
version = "0.4.0"
|
2018-08-23 15:15:22 -07:00
|
|
|
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"
|
2019-08-02 06:57:34 -07:00
|
|
|
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"
|
2018-08-23 15:15:22 -07:00
|
|
|
|
2020-08-23 02:54:32 -07:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
|
2018-08-23 15:15:22 -07:00
|
|
|
[dependencies]
|
2020-09-08 16:07:51 -07:00
|
|
|
bellman = { version = "0.8", default-features = false, features = ["groth16"] }
|
2019-06-04 05:15:12 -07:00
|
|
|
blake2b_simd = "0.5"
|
2020-09-09 08:51:53 -07:00
|
|
|
bls12_381 = "0.3.1"
|
2018-08-14 14:01:33 -07:00
|
|
|
byteorder = "1"
|
2020-06-25 05:00:51 -07:00
|
|
|
directories = { version = "3", optional = true }
|
2020-09-08 16:07:51 -07:00
|
|
|
ff = "0.8"
|
|
|
|
group = "0.8"
|
2020-09-09 08:51:53 -07:00
|
|
|
jubjub = "0.5.1"
|
2020-07-01 03:46:52 -07:00
|
|
|
lazy_static = "1"
|
2020-06-25 17:38:40 -07:00
|
|
|
minreq = { version = "2", features = ["https"], optional = true }
|
2019-10-03 23:50:01 -07:00
|
|
|
rand_core = "0.5.1"
|
2020-07-10 03:15:23 -07:00
|
|
|
wagyu-zcash-parameters = { version = "0.2", optional = true }
|
2020-09-09 13:41:19 -07:00
|
|
|
zcash_primitives = { version = "0.4", path = "../zcash_primitives" }
|
2019-06-12 09:36:09 -07:00
|
|
|
|
2019-08-05 14:45:12 -07:00
|
|
|
[dev-dependencies]
|
2020-08-31 09:13:39 -07:00
|
|
|
criterion = "0.3"
|
2019-08-05 14:45:12 -07:00
|
|
|
rand_xorshift = "0.2"
|
|
|
|
|
2019-06-12 09:36:09 -07:00
|
|
|
[features]
|
2019-12-03 07:15:13 -08:00
|
|
|
default = ["local-prover", "multicore"]
|
2020-07-10 03:15:23 -07:00
|
|
|
bundled-prover = ["wagyu-zcash-parameters"]
|
2020-06-25 17:38:40 -07:00
|
|
|
download-params = ["minreq"]
|
2019-06-12 09:36:09 -07:00
|
|
|
local-prover = ["directories"]
|
2019-12-03 07:15:13 -08:00
|
|
|
multicore = ["bellman/multicore"]
|
2019-10-07 20:10:30 -07:00
|
|
|
|
2020-08-31 09:13:39 -07:00
|
|
|
[[bench]]
|
|
|
|
name = "sapling"
|
|
|
|
harness = false
|
|
|
|
required-features = ["local-prover"]
|
|
|
|
|
2020-06-25 17:48:44 -07:00
|
|
|
[[example]]
|
|
|
|
name = "get-params-path"
|
|
|
|
required-features = ["directories"]
|
|
|
|
|
2020-06-25 17:38:40 -07:00
|
|
|
[[example]]
|
|
|
|
name = "download-params"
|
|
|
|
required-features = ["download-params"]
|
|
|
|
|
2019-10-07 20:10:30 -07:00
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|