zcash_proofs 0.7.0

This commit is contained in:
Jack Grigg 2022-06-24 16:33:38 +00:00
parent e952ff637e
commit 6f4de16b97
5 changed files with 6 additions and 4 deletions

View File

@ -45,7 +45,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.6", path = "../zcash_proofs" }
zcash_proofs = { version = "0.7", path = "../zcash_proofs" }
[features]
transparent-inputs = ["ripemd", "hdwallet", "sha2", "secp256k1", "zcash_primitives/transparent-inputs"]

View File

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

View File

@ -16,7 +16,7 @@ zcash_primitives = { version = "0.7", path = "../zcash_primitives", features = [
ff = "0.12"
jubjub = "0.9"
rand_core = "0.6"
zcash_proofs = { version = "0.6", path = "../zcash_proofs" }
zcash_proofs = { version = "0.7", 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.7.0] - 2022-06-24
### Changed
- Bumped dependencies to `zcash_primitives 0.7`.

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_proofs"
description = "Zcash zk-SNARK circuits and proving APIs"
version = "0.6.0"
version = "0.7.0"
authors = [
"Jack Grigg <jack@z.cash>",
]