Skip to content

Commit

Permalink
Merge pull request #1399 from zcash/fix-sapling-flags
Browse files Browse the repository at this point in the history
Disable `sapling-crypto` default features by default
  • Loading branch information
str4d authored May 24, 2024
2 parents 0b350c1 + f136535 commit 4cf777f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 5 additions & 0 deletions zcash_primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion zcash_primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"Kris Nuttycombe <[email protected]>"
Expand Down

0 comments on commit 4cf777f

Please sign in to comment.