-
- Downloads
Add traits for constraints (#59)
* add the trait part of the constraints * fix * Update src/constraints.rs Co-authored-by:Pratyush Mishra <pratyushmishra@berkeley.edu> * Update src/constraints.rs Co-authored-by:
Pratyush Mishra <pratyushmishra@berkeley.edu> * Update src/constraints.rs Co-authored-by:
Pratyush Mishra <pratyushmishra@berkeley.edu> * Update src/constraints.rs Co-authored-by:
Pratyush Mishra <pratyushmishra@berkeley.edu> * Update src/constraints.rs Co-authored-by:
Pratyush Mishra <pratyushmishra@berkeley.edu> * fix Co-authored-by:
Pratyush Mishra <pratyushmishra@berkeley.edu>
... | @@ -27,6 +27,10 @@ ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = fa | ... | @@ -27,6 +27,10 @@ ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = fa |
ark-poly = { git = "https://github.com/arkworks-rs/algebra", default-features = false } | ark-poly = { git = "https://github.com/arkworks-rs/algebra", default-features = false } | ||
ark-std = { git = "https://github.com/arkworks-rs/utils", default-features = false } | ark-std = { git = "https://github.com/arkworks-rs/utils", default-features = false } | ||
ark-relations = { git = "https://github.com/arkworks-rs/snark", default-features = false, optional = true } | |||
ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std", default-features = false, optional = true } | |||
ark-nonnative-field = { git = "https://github.com/arkworks-rs/nonnative", default-features = false, optional = true } | |||
hashbrown = { version = "0.9", optional = true } | |||
bench-utils = { git = "https://github.com/arkworks-rs/utils", default-features = false } | bench-utils = { git = "https://github.com/arkworks-rs/utils", default-features = false } | ||
... | @@ -57,5 +61,6 @@ debug = true | ... | @@ -57,5 +61,6 @@ debug = true |
[features] | [features] | ||
default = [ "std", "parallel" ] | default = [ "std", "parallel" ] | ||
std = [ "ark-ff/std", "ark-ec/std", "ark-poly/std", "ark-std/std", "ark-serialize/std" ] | std = [ "ark-ff/std", "ark-ec/std", "ark-poly/std", "ark-std/std", "ark-serialize/std" ] | ||
r1cs = [ "ark-relations", "ark-r1cs-std", "ark-nonnative-field", "hashbrown" ] | |||
print-trace = [ "bench-utils/print-trace" ] | print-trace = [ "bench-utils/print-trace" ] | ||
parallel = [ "std", "ark-ff/parallel", "ark-ec/parallel", "ark-poly/parallel", "ark-std/parallel", "rayon" ] | parallel = [ "std", "ark-ff/parallel", "ark-ec/parallel", "ark-poly/parallel", "ark-std/parallel", "rayon" ] |
src/constraints.rs
0 → 100644
Please register or sign in to comment