Merge pull request #1399 from zcash/fix-sapling-flags

Disable `sapling-crypto` default features by default
This commit is contained in:
str4d 2024-05-24 02:06:17 +01:00 committed by GitHub
commit 4cf777ffdd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 3 deletions

2
Cargo.lock generated
View File

@ -3134,7 +3134,7 @@ dependencies = [
[[package]]
name = "zcash_primitives"
version = "0.15.0"
version = "0.15.1"
dependencies = [
"aes",
"assert_matches",

View File

@ -54,7 +54,7 @@ bitvec = "1"
blake2s_simd = "1"
bls12_381 = "0.8"
jubjub = "0.10"
sapling = { package = "sapling-crypto", version = "0.1.3" }
sapling = { package = "sapling-crypto", version = "0.1.3", default-features = false }
# - Orchard
nonempty = "0.7"

View File

@ -12,6 +12,11 @@ and this library adheres to Rust's notion of
the `bip0039` crate, has been removed. Use the `bip0039` crate directly
instead.
## [0.15.1] - 2024-05-23
- Fixed `sapling-crypto` dependency to not enable its `multicore` feature flag
when the default features of `zcash_primitives` are disabled.
## [0.15.0] - 2024-03-25
### Added

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_primitives"
description = "Rust implementations of the Zcash primitives"
version = "0.15.0"
version = "0.15.1"
authors = [
"Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>"