From d6bc2fe0af5e8524c6601482af14541234dec087 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 8 Oct 2019 16:10:30 +1300 Subject: [PATCH] zcash_proofs 0.1.0 --- Cargo.lock | 4 ++-- zcash_proofs/Cargo.toml | 17 ++++++++++++----- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5eb1e6a..75da3c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -369,7 +369,7 @@ dependencies = [ "pairing 0.15.0", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "zcash_primitives 0.1.0", - "zcash_proofs 0.0.0", + "zcash_proofs 0.1.0", ] [[package]] @@ -636,7 +636,7 @@ dependencies = [ [[package]] name = "zcash_proofs" -version = "0.0.0" +version = "0.1.0" dependencies = [ "bellman 0.2.0", "blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/zcash_proofs/Cargo.toml b/zcash_proofs/Cargo.toml index 9d07727..b9de0f7 100644 --- a/zcash_proofs/Cargo.toml +++ b/zcash_proofs/Cargo.toml @@ -1,21 +1,25 @@ [package] name = "zcash_proofs" -version = "0.0.0" +description = "Zcash zk-SNARK circuits and proving APIs" +version = "0.1.0" authors = [ "Jack Grigg ", ] +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 = { path = "../bellman" } +bellman = { version = "0.2.0", path = "../bellman" } blake2b_simd = "0.5" byteorder = "1" directories = { version = "1", optional = true } -ff = { path = "../ff" } -pairing = { path = "../pairing" } +ff = { version = "0.5.0", path = "../ff" } +pairing = { version = "0.15.0", path = "../pairing" } rand_core = "0.5.1" -zcash_primitives = { path = "../zcash_primitives" } +zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" } [dev-dependencies] rand_xorshift = "0.2" @@ -23,3 +27,6 @@ rand_xorshift = "0.2" [features] default = ["local-prover"] local-prover = ["directories"] + +[badges] +maintenance = { status = "actively-developed" }