mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-02-01 08:12:14 +00:00
zcash_proofs 0.1.0
This commit is contained in:
parent
8b08528bb0
commit
d6bc2fe0af
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -369,7 +369,7 @@ dependencies = [
|
|||||||
"pairing 0.15.0",
|
"pairing 0.15.0",
|
||||||
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"zcash_primitives 0.1.0",
|
"zcash_primitives 0.1.0",
|
||||||
"zcash_proofs 0.0.0",
|
"zcash_proofs 0.1.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -636,7 +636,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zcash_proofs"
|
name = "zcash_proofs"
|
||||||
version = "0.0.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bellman 0.2.0",
|
"bellman 0.2.0",
|
||||||
"blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
"blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -1,21 +1,25 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "zcash_proofs"
|
name = "zcash_proofs"
|
||||||
version = "0.0.0"
|
description = "Zcash zk-SNARK circuits and proving APIs"
|
||||||
|
version = "0.1.0"
|
||||||
authors = [
|
authors = [
|
||||||
"Jack Grigg <jack@z.cash>",
|
"Jack Grigg <jack@z.cash>",
|
||||||
]
|
]
|
||||||
|
homepage = "https://github.com/zcash/librustzcash"
|
||||||
|
repository = "https://github.com/zcash/librustzcash"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bellman = { path = "../bellman" }
|
bellman = { version = "0.2.0", path = "../bellman" }
|
||||||
blake2b_simd = "0.5"
|
blake2b_simd = "0.5"
|
||||||
byteorder = "1"
|
byteorder = "1"
|
||||||
directories = { version = "1", optional = true }
|
directories = { version = "1", optional = true }
|
||||||
ff = { path = "../ff" }
|
ff = { version = "0.5.0", path = "../ff" }
|
||||||
pairing = { path = "../pairing" }
|
pairing = { version = "0.15.0", path = "../pairing" }
|
||||||
rand_core = "0.5.1"
|
rand_core = "0.5.1"
|
||||||
zcash_primitives = { path = "../zcash_primitives" }
|
zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand_xorshift = "0.2"
|
rand_xorshift = "0.2"
|
||||||
@ -23,3 +27,6 @@ rand_xorshift = "0.2"
|
|||||||
[features]
|
[features]
|
||||||
default = ["local-prover"]
|
default = ["local-prover"]
|
||||||
local-prover = ["directories"]
|
local-prover = ["directories"]
|
||||||
|
|
||||||
|
[badges]
|
||||||
|
maintenance = { status = "actively-developed" }
|
||||||
|
Loading…
Reference in New Issue
Block a user