From a77972bf9aa75fbe2392711584ad2b2a28ee848b Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Fri, 31 Jan 2020 18:29:29 +0100 Subject: [PATCH] no_std for algebra and r1cs-core (#76) --- .gitignore | 2 ++ Cargo.toml | 13 ++++++++++++- r1cs-std/src/lib.rs | 1 + 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index be1aec0..9b5e101 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,5 @@ Cargo.lock *.pyc *.sage.py params +*.swp +*.swo diff --git a/Cargo.toml b/Cargo.toml index c267818..bce5c74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,17 @@ [workspace] -members = [ "algebra", "ff-fft", "r1cs-core", "r1cs-std", "groth16", "gm17", "crypto-primitives", "dpc", "bench-utils" ] +members = [ + "algebra", + "algebra-benches", + "bench-utils", + "crypto-primitives", + "dpc", + "ff-fft", + "gm17", + "groth16", + "r1cs-core", + "r1cs-std", +] [profile.release] opt-level = 3 diff --git a/r1cs-std/src/lib.rs b/r1cs-std/src/lib.rs index 8a159bd..3425fa1 100644 --- a/r1cs-std/src/lib.rs +++ b/r1cs-std/src/lib.rs @@ -35,6 +35,7 @@ #[macro_use] extern crate algebra; + #[macro_use] extern crate derivative;