zcash_proofs: Use bellman 0.11.1 to fix non-multicore compilation bug

This commit is contained in:
Jack Grigg 2021-09-09 20:47:59 +01:00
parent 65e1d32774
commit e3061e1d72
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ and this library adheres to Rust's notion of
## [Unreleased]
### Changed
- MSRV is now 1.51.0.
- Bumped dependencies to `ff 0.11`, `group 0.11`, `bellman 0.11`,
- Bumped dependencies to `ff 0.11`, `group 0.11`, `bellman 0.11.1`,
`bls12_381 0.6`, `jubjub 0.8`.
- `zcash_proofs::sapling::SaplingVerificationContext::new` now takes a
`zip216_enabled` boolean; this is used to control how RedJubjub signatures are

View File

@ -15,7 +15,7 @@ edition = "2018"
all-features = true
[dependencies]
bellman = { version = "0.11", default-features = false, features = ["groth16"] }
bellman = { version = "0.11.1", default-features = false, features = ["groth16"] }
blake2b_simd = "0.5"
bls12_381 = "0.6"
byteorder = "1"