mirror of
https://github.com/arnaucube/ark-r1cs-std.git
synced 2026-01-08 15:01:29 +01:00
no_std for algebra and r1cs-core (#76)
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -7,3 +7,5 @@ Cargo.lock
|
|||||||
*.pyc
|
*.pyc
|
||||||
*.sage.py
|
*.sage.py
|
||||||
params
|
params
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
|||||||
13
Cargo.toml
13
Cargo.toml
@@ -1,6 +1,17 @@
|
|||||||
[workspace]
|
[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]
|
[profile.release]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate algebra;
|
extern crate algebra;
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate derivative;
|
extern crate derivative;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user