Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Jack Grigg <[email protected]>
  • Loading branch information
nuttycom and str4d authored Dec 19, 2024
1 parent 2cfc268 commit beece0b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ getset = "0.1"
core2 = { version = "0.3", default-features = false, features = ["alloc"] }

# Circuits
bellman = { version = "0.14", features = ["groth16"], optional = true }
bellman = { version = "0.14", default-features = false, features = ["groth16"], optional = true }

# CSPRNG
rand = { version = "0.8", default-features = false }
Expand Down Expand Up @@ -89,23 +89,23 @@ pprof = { version = "0.11", features = ["criterion", "flamegraph"] } # MSRV 1.56
default = ["multicore", "std"]
std = [
"core2/std",
"document-features",
"dep:document-features",
"group/wnaf-memuse",
"redjubjub/std",
"circuit",
]

## Enables creation of Sapling proofs
circuit = [
"bellman",
"dep:bellman",
"bls12_381/bits",
"bls12_381/groups",
"bls12_381/pairings",
"jubjub/bits",
]

## Enables multithreading support for creating proofs.
multicore = ["circuit", "bellman/multicore"]
multicore = ["bellman?/multicore"]

### A temporary feature flag that exposes granular APIs needed by `zcashd`. These APIs
### should not be relied upon and will be removed in a future release.
Expand Down

0 comments on commit beece0b

Please sign in to comment.