-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 1.02 KB
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
[package]
name = "binius-spartan-wrapper-prover"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
binius-field = { path = "../field" }
binius-iop = { path = "../iop" }
binius-ip = { path = "../ip" }
binius-iop-prover = { path = "../iop-prover" }
binius-ip-prover = { path = "../ip-prover" }
binius-math = { path = "../math" }
binius-spartan-frontend = { path = "../spartan-frontend" }
binius-spartan-prover = { path = "../spartan-prover" }
binius-spartan-verifier = { path = "../spartan-verifier" }
binius-spartan-wrapper = { path = "../spartan-wrapper" }
binius-transcript = { path = "../transcript" }
binius-utils = { path = "../utils" }
rand.workspace = true
[dev-dependencies]
binius-hash = { path = "../hash" }
binius-iop = { path = "../iop" }
binius-ip = { path = "../ip" }
binius-math = { path = "../math" }
binius-spartan-verifier = { path = "../spartan-verifier" }
binius-spartan-wrapper = { path = "../spartan-wrapper" }
binius-verifier = { path = "../verifier" }
[lints]
workspace = true