zcash_proofs 0.6.0

This commit is contained in:
Jack Grigg 2022-05-10 23:29:39 +00:00
parent 3ecfd26d79
commit 1161fc963f
5 changed files with 7 additions and 4 deletions

View File

@ -43,7 +43,7 @@ protobuf-codegen-pure = "~2.27.1" # MSRV 1.52.1
gumdrop = "0.8"
rand_xorshift = "0.3"
tempfile = "3.1.0"
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
zcash_proofs = { version = "0.6", path = "../zcash_proofs" }
[features]
transparent-inputs = ["ripemd", "hdwallet", "sha2", "secp256k1", "zcash_primitives/transparent-inputs"]

View File

@ -28,7 +28,7 @@ zcash_primitives = { version = "0.6", path = "../zcash_primitives" }
[dev-dependencies]
tempfile = "3"
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
zcash_proofs = { version = "0.6", path = "../zcash_proofs" }
[features]
mainnet = []

View File

@ -16,7 +16,7 @@ zcash_primitives = { version = "0.6", path = "../zcash_primitives", features = [
ff = "0.12"
jubjub = "0.9"
rand_core = "0.6"
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
zcash_proofs = { version = "0.6", path = "../zcash_proofs" }
[features]
transparent-inputs = []

View File

@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.6.0] - 2022-05-11
### Changed
- MSRV is now 1.56.1.
- Bumped dependencies to `ff 0.12`, `group 0.12`, `bellman 0.13`,

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_proofs"
description = "Zcash zk-SNARK circuits and proving APIs"
version = "0.5.0"
version = "0.6.0"
authors = [
"Jack Grigg <jack@z.cash>",
]
@ -10,6 +10,7 @@ repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018"
categories = ["cryptography::cryptocurrencies"]
[package.metadata.docs.rs]
all-features = true