From b0ba7fe4d221b7800d9e55e468316117b4a2e778 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 8 Oct 2019 16:11:39 +1300 Subject: [PATCH] zcash_client_backend 0.1.0 --- Cargo.lock | 2 +- zcash_client_backend/Cargo.toml | 13 ++++++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 75da3c7..2558a57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -603,7 +603,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "zcash_client_backend" -version = "0.0.0" +version = "0.1.0" dependencies = [ "bech32 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "pairing 0.15.0", diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index 6199f2b..7594630 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -1,17 +1,24 @@ [package] name = "zcash_client_backend" -version = "0.0.0" +description = "APIs for creating shielded Zcash light clients" +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] bech32 = "0.7" -pairing = { path = "../pairing" } -zcash_primitives = { path = "../zcash_primitives" } +pairing = { version = "0.15.0", path = "../pairing" } +zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" } [dev-dependencies] rand_core = "0.5" rand_xorshift = "0.2" + +[badges] +maintenance = { status = "actively-developed" }