-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 968 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (31 loc) · 968 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
33
[workspace]
resolver = "2"
members = [
"gkr", "elliptic-curve",
"transcripts/fiat-shamir", "field",
"polynomial",
"shamir-secret-sharing", "circuit",
"sumcheck", "kzg", "signature-schemes", "plonk", "transcripts/merlin",
]
[workspace.dependencies]
polynomial = { path = "polynomial" }
fiat_shamir = { path = "transcripts/fiat-shamir" }
merlin = { path = "transcripts/merlin" }
kzg = { path = "kzg" }
circuit = { path = "circuit" }
sumcheck = { path = "sumcheck" }
field = { path = "field" }
elliptic_curve = { path = "elliptic-curve" }
ark-ff = "0.4.2"
ark-ec = "0.4.2"
sha2 = "0.10.8"
num-bigint = {version = "0.4.6", features = ['rand']}
num-complex = "0.4.6"
num-traits = "0.2.19"
rand = "0.8.5"
blake2 = "0.10.6"
ark-bls12-381 = "0.4.0"
ark-serialize = "0.4.2"
modinverse = "0.1.1"
ark-test-curves = {version = "0.4.2", features = ["bls12_381_curve"]}
field-tracker = {git = "https://github.com/sublinearlabs/field-tracker", branch = "main"}