zcash_proofs 0.6.0
This commit is contained in:
parent
3ecfd26d79
commit
1161fc963f
|
@ -43,7 +43,7 @@ protobuf-codegen-pure = "~2.27.1" # MSRV 1.52.1
|
||||||
gumdrop = "0.8"
|
gumdrop = "0.8"
|
||||||
rand_xorshift = "0.3"
|
rand_xorshift = "0.3"
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
|
zcash_proofs = { version = "0.6", path = "../zcash_proofs" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
transparent-inputs = ["ripemd", "hdwallet", "sha2", "secp256k1", "zcash_primitives/transparent-inputs"]
|
transparent-inputs = ["ripemd", "hdwallet", "sha2", "secp256k1", "zcash_primitives/transparent-inputs"]
|
||||||
|
|
|
@ -28,7 +28,7 @@ zcash_primitives = { version = "0.6", path = "../zcash_primitives" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
|
zcash_proofs = { version = "0.6", path = "../zcash_proofs" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
mainnet = []
|
mainnet = []
|
||||||
|
|
|
@ -16,7 +16,7 @@ zcash_primitives = { version = "0.6", path = "../zcash_primitives", features = [
|
||||||
ff = "0.12"
|
ff = "0.12"
|
||||||
jubjub = "0.9"
|
jubjub = "0.9"
|
||||||
rand_core = "0.6"
|
rand_core = "0.6"
|
||||||
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
|
zcash_proofs = { version = "0.6", path = "../zcash_proofs" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
transparent-inputs = []
|
transparent-inputs = []
|
||||||
|
|
|
@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
|
||||||
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.6.0] - 2022-05-11
|
||||||
### Changed
|
### Changed
|
||||||
- MSRV is now 1.56.1.
|
- MSRV is now 1.56.1.
|
||||||
- Bumped dependencies to `ff 0.12`, `group 0.12`, `bellman 0.13`,
|
- Bumped dependencies to `ff 0.12`, `group 0.12`, `bellman 0.13`,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zcash_proofs"
|
name = "zcash_proofs"
|
||||||
description = "Zcash zk-SNARK circuits and proving APIs"
|
description = "Zcash zk-SNARK circuits and proving APIs"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
authors = [
|
authors = [
|
||||||
"Jack Grigg <jack@z.cash>",
|
"Jack Grigg <jack@z.cash>",
|
||||||
]
|
]
|
||||||
|
@ -10,6 +10,7 @@ repository = "https://github.com/zcash/librustzcash"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
categories = ["cryptography::cryptocurrencies"]
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
|
|
Loading…
Reference in New Issue