Skip to content

Commit a77972b

Browse files
authored
no_std for algebra and r1cs-core (arkworks-rs#76)
1 parent 5e57ac5 commit a77972b

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ Cargo.lock
77
*.pyc
88
*.sage.py
99
params
10+
*.swp
11+
*.swo

Cargo.toml

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
[workspace]
22

3-
members = [ "algebra", "ff-fft", "r1cs-core", "r1cs-std", "groth16", "gm17", "crypto-primitives", "dpc", "bench-utils" ]
3+
members = [
4+
"algebra",
5+
"algebra-benches",
6+
"bench-utils",
7+
"crypto-primitives",
8+
"dpc",
9+
"ff-fft",
10+
"gm17",
11+
"groth16",
12+
"r1cs-core",
13+
"r1cs-std",
14+
]
415

516
[profile.release]
617
opt-level = 3

r1cs-std/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
#[macro_use]
3737
extern crate algebra;
38+
3839
#[macro_use]
3940
extern crate derivative;
4041

0 commit comments

Comments
 (0)