-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from penumbra-zone/disable-features
disable default internal parallelism (rayon)
- Loading branch information
Showing
3 changed files
with
22 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "decaf377" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Henry de Valence <[email protected]>", "redshiftzero <[email protected]>"] | ||
description = "A prime-order group designed for use in SNARKs over BLS12-377" | ||
edition = "2018" | ||
|
@@ -17,19 +17,24 @@ tracing = "0.1" | |
tracing-subscriber = "0.2" | ||
anyhow = "1.0" | ||
ark-relations = "0.3" | ||
ark-r1cs-std = {version = "0.3", optional=true } | ||
ark-std = "0.3" | ||
ark-ec = "0.3" | ||
ark-ff = "0.3" | ||
ark-r1cs-std = { version = "0.3", optional=true, default-features=false } | ||
ark-std = { version = "0.3", default-features=false } | ||
ark-ec = { version = "0.3", default-features=false } | ||
ark-ff = { version = "0.3", default-features=false } | ||
ark-serialize = "0.3" | ||
ark-bls12-377 = "0.3" | ||
ark-ed-on-bls12-377 = { version = "0.3", features = ["r1cs"] } | ||
ark-groth16 = { version = "0.3", optional=true } | ||
ark-groth16 = { version = "0.3", default-features=false, optional=true } | ||
ark-snark = { version = "0.3", optional=true } | ||
zeroize = "1.4" | ||
|
||
# This matches what ark-std (a library for no_std compatibility) does, having | ||
# a default feature of std - without the ark-std std feature, decaf377 doesn't | ||
# compile | ||
[features] | ||
default = [] | ||
default = ["std"] | ||
std = ["ark-std/std"] | ||
parallel = ["ark-ff/parallel", "ark-ec/parallel", "ark-groth16/parallel", "ark-std/parallel", "ark-r1cs-std/parallel"] | ||
r1cs = ["ark-r1cs-std", "ark-groth16", "ark-snark"] | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters