-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 814 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[workspace]
members = [
"crates/field",
"crates/multilinear",
"crates/transcript",
"crates/oracle",
"crates/sumcheck",
"crates/zerocheck",
"crates/permcheck",
"crates/interchange",
"crates/benches",
"crates/cli",
]
resolver = "2"
[workspace.package]
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/katastrofh/SNARK_LAB"
[workspace.dependencies]
ark-ff = "0.5"
ark-bls12-381 = "0.5"
field = { path = "crates/field" }
multilinear = { path = "crates/multilinear" }
sumcheck = { path = "crates/sumcheck" }
zerocheck = { path = "crates/zerocheck" }
permcheck = { path = "crates/permcheck" }
snark-lab-transcript = { path = "crates/transcript" }
snark-lab-interchange = { path = "crates/interchange" }
snark-lab-oracle = { path = "crates/oracle" }