mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-02-07 06:44:11 +00:00
33 lines
838 B
TOML
33 lines
838 B
TOML
[package]
|
|
name = "zcash_proofs"
|
|
description = "Zcash zk-SNARK circuits and proving APIs"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Jack Grigg <jack@z.cash>",
|
|
]
|
|
homepage = "https://github.com/zcash/librustzcash"
|
|
repository = "https://github.com/zcash/librustzcash"
|
|
readme = "README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bellman = { version = "0.2.0", path = "../bellman" }
|
|
blake2b_simd = "0.5"
|
|
byteorder = "1"
|
|
directories = { version = "1", optional = true }
|
|
ff = { version = "0.5.0", path = "../ff" }
|
|
pairing = { version = "0.15.0", path = "../pairing" }
|
|
rand_core = "0.5.1"
|
|
zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" }
|
|
|
|
[dev-dependencies]
|
|
rand_xorshift = "0.2"
|
|
|
|
[features]
|
|
default = ["local-prover"]
|
|
local-prover = ["directories"]
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|