-
- Downloads
Update for Zexe changes, and add support
Showing
- .travis.yml 23 additions, 7 deletions.travis.yml
- Cargo.toml 11 additions, 7 deletionsCargo.toml
- src/data_structures.rs 10 additions, 10 deletionssrc/data_structures.rs
- src/error.rs 7 additions, 14 deletionssrc/error.rs
- src/kzg10/data_structures.rs 10 additions, 11 deletionssrc/kzg10/data_structures.rs
- src/kzg10/error.rs 3 additions, 7 deletionssrc/kzg10/error.rs
- src/kzg10/mod.rs 34 additions, 33 deletionssrc/kzg10/mod.rs
- src/lib.rs 17 additions, 10 deletionssrc/lib.rs
- src/marlin_kzg10/data_structures.rs 4 additions, 4 deletionssrc/marlin_kzg10/data_structures.rs
- src/marlin_kzg10/error.rs 5 additions, 8 deletionssrc/marlin_kzg10/error.rs
- src/marlin_kzg10/mod.rs 8 additions, 8 deletionssrc/marlin_kzg10/mod.rs
... | @@ -19,15 +19,16 @@ license = "MIT/Apache-2.0" | ... | @@ -19,15 +19,16 @@ license = "MIT/Apache-2.0" |
edition = "2018" | edition = "2018" | ||
[dependencies] | [dependencies] | ||
algebra = { git = "https://github.com/scipr-lab/zexe/", features = [ "parallel" ] } | algebra-core = { git = "https://github.com/scipr-lab/zexe/", default-features = false } | ||
ff-fft = { git = "https://github.com/scipr-lab/zexe/" } | ff-fft = { git = "https://github.com/scipr-lab/zexe/", default-features = false } | ||
bench-utils = { git = "https://github.com/scipr-lab/zexe/" } | bench-utils = { git = "https://github.com/scipr-lab/zexe/", default-features = false } | ||
rand_core = { version = "0.5" } | rand_core = { version = "0.5", default-features = false } | ||
rayon = { version = "1" } | rayon = { version = "1", optional = true } | ||
derivative = { version = "1" } | derivative = { version = "1", features = [ "use_core" ] } | ||
[dev-dependencies] | [dev-dependencies] | ||
rand = { version = "0.7" } | rand = { version = "0.7", default-features = false } | ||
algebra = { git = "https://github.com/scipr-lab/zexe/", default-features = false, features = ["full"] } | |||
[profile.release] | [profile.release] | ||
opt-level = 3 | opt-level = 3 | ||
... | @@ -42,4 +43,7 @@ incremental = true | ... | @@ -42,4 +43,7 @@ incremental = true |
debug = true | debug = true | ||
[features] | [features] | ||
default = ["std"] | |||
std = [ "algebra-core/std", "ff-fft/std", ] | |||
print-trace = [ "bench-utils/print-trace" ] | print-trace = [ "bench-utils/print-trace" ] | ||
parallel = [ "std", "algebra-core/parallel", "ff-fft/parallel", "rayon" ] |
Please register or sign in to comment