Skip to content

Commit

Permalink
Disable sapling-crypto default features by default
Browse files Browse the repository at this point in the history
The only default-enabled feature flag in `sapling-crypto` is the
`multicore` feature flag, which we re-export in each crate that includes
proof creation. We need to disable it as a default feature of our
dependency in order to enable it to be correctly disabled when a user of
e.g. `zcash_primitives` disables its default features.
  • Loading branch information
str4d committed May 23, 2024
1 parent 0b350c1 commit 07f78b6
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 07f78b6

Please sign in to comment.