no_std for algebra and r1cs-core (#76)

This commit is contained in:
Marek Kotewicz
2020-01-31 18:29:29 +01:00
committed by GitHub
parent 5e57ac5621
commit a77972bf9a
3 changed files with 15 additions and 1 deletions

2
.gitignore vendored
View File

@@ -7,3 +7,5 @@ Cargo.lock
*.pyc
*.sage.py
params
*.swp
*.swo

View File

@@ -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

View File

@@ -35,6 +35,7 @@
#[macro_use]
extern crate algebra;
#[macro_use]
extern crate derivative;