From 98731c83743b6438caceb5362daeedba115cf03f Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 8 Oct 2019 16:12:50 +1300 Subject: [PATCH] librustzcash 0.2.0 --- Cargo.lock | 2 +- librustzcash/Cargo.toml | 19 +++++++++++++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2558a57..7a33a24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -357,7 +357,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "librustzcash" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bellman 0.2.0", "blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/librustzcash/Cargo.toml b/librustzcash/Cargo.toml index 567bf7c..432222b 100644 --- a/librustzcash/Cargo.toml +++ b/librustzcash/Cargo.toml @@ -1,13 +1,17 @@ [package] name = "librustzcash" -version = "0.1.0" +description = "Rust FFI used by the zcashd binary. Not an official API." +version = "0.2.0" authors = [ "Sean Bowe ", "Jack Grigg ", "Jay Graber ", "Simon Liu " ] +homepage = "https://github.com/zcash/librustzcash" +repository = "https://github.com/zcash/librustzcash" readme = "README.md" +license = "MIT OR Apache-2.0" edition = "2018" [lib] @@ -16,14 +20,17 @@ path = "src/rustzcash.rs" crate-type = ["staticlib"] [dependencies] -bellman = { path = "../bellman" } +bellman = { version = "0.2.0", path = "../bellman" } blake2b_simd = "0.5" blake2s_simd = "0.5" -ff = { path = "../ff" } +ff = { version = "0.5.0", path = "../ff" } libc = "0.2" -pairing = { path = "../pairing" } +pairing = { version = "0.15.0", path = "../pairing" } lazy_static = "1" byteorder = "1" rand_core = "0.5.1" -zcash_primitives = { path = "../zcash_primitives" } -zcash_proofs = { path = "../zcash_proofs" } +zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" } +zcash_proofs = { version = "0.1.0", path = "../zcash_proofs" } + +[badges] +maintenance = { status = "deprecated" }