librustzcash 0.2.0

This commit is contained in:
Jack Grigg 2019-10-08 16:12:50 +13:00
parent b0ba7fe4d2
commit 98731c8374
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
2 changed files with 14 additions and 7 deletions

2
Cargo.lock generated
View File

@ -357,7 +357,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "librustzcash" name = "librustzcash"
version = "0.1.0" version = "0.2.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)",

View File

@ -1,13 +1,17 @@
[package] [package]
name = "librustzcash" name = "librustzcash"
version = "0.1.0" description = "Rust FFI used by the zcashd binary. Not an official API."
version = "0.2.0"
authors = [ authors = [
"Sean Bowe <ewillbefull@gmail.com>", "Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>", "Jack Grigg <jack@z.cash>",
"Jay Graber <jay@z.cash>", "Jay Graber <jay@z.cash>",
"Simon Liu <simon@z.cash>" "Simon Liu <simon@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"
[lib] [lib]
@ -16,14 +20,17 @@ path = "src/rustzcash.rs"
crate-type = ["staticlib"] crate-type = ["staticlib"]
[dependencies] [dependencies]
bellman = { path = "../bellman" } bellman = { version = "0.2.0", path = "../bellman" }
blake2b_simd = "0.5" blake2b_simd = "0.5"
blake2s_simd = "0.5" blake2s_simd = "0.5"
ff = { path = "../ff" } ff = { version = "0.5.0", path = "../ff" }
libc = "0.2" libc = "0.2"
pairing = { path = "../pairing" } pairing = { version = "0.15.0", path = "../pairing" }
lazy_static = "1" lazy_static = "1"
byteorder = "1" byteorder = "1"
rand_core = "0.5.1" rand_core = "0.5.1"
zcash_primitives = { path = "../zcash_primitives" } zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" }
zcash_proofs = { path = "../zcash_proofs" } zcash_proofs = { version = "0.1.0", path = "../zcash_proofs" }
[badges]
maintenance = { status = "deprecated" }