Skip to content

Commit

Permalink
librustzcash 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Oct 8, 2019
1 parent b0ba7fe commit 98731c8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 13 additions & 6 deletions librustzcash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"Jack Grigg <[email protected]>",
"Jay Graber <[email protected]>",
"Simon Liu <[email protected]>"
]
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018"

[lib]
Expand All @@ -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" }

0 comments on commit 98731c8

Please sign in to comment.