From cfe2c8d29ae75f93b0434dfe75b47dc02c956896 Mon Sep 17 00:00:00 2001 From: Pratyush Mishra Date: Wed, 4 Sep 2019 16:33:58 -0700 Subject: [PATCH] Refactor FFT infrastructure (#28) * Update API of EvaluationDomain * Update gm17 to use new API * Move fft infrastructure to its own crate * Fix gm17 to work with ff-fft * Refactor polynomial infrastructure * Change .travis-yml to not compile in release and to not run DPC tests --- Cargo.toml | 2 +- r1cs-std/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 08983aa..bcefb1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [workspace] -members = [ "dpc", "algebra", "r1cs-core", "r1cs-std", "gm17", "bench-utils" ] +members = [ "algebra", "ff-fft", "r1cs-core", "r1cs-std", "gm17", "dpc", "bench-utils" ] [profile.release] opt-level = 3 diff --git a/r1cs-std/Cargo.toml b/r1cs-std/Cargo.toml index f4fab26..dbbd86d 100644 --- a/r1cs-std/Cargo.toml +++ b/r1cs-std/Cargo.toml @@ -12,7 +12,7 @@ authors = [ description = "A standard library for constraint system gadgets" homepage = "https://libzexe.org" repository = "https://github.com/scipr/zexe" -documentation = "https://docs.rs/snark-gadgets/" +documentation = "https://docs.rs/r1cs-std/" keywords = ["zero knowledge", "cryptography", "zkSNARK", "SNARK"] categories = ["cryptography"] include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]