forked from o1-labs/proof-systems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (48 loc) · 1.2 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (48 loc) · 1.2 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "poly-commitment"
description = "Library implementing different polynomial commitments schemes, like IPA and KZG10"
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
readme = "../README.md"
repository.workspace = true
version.workspace = true
[dependencies]
ark-ec.workspace = true
ark-ff.workspace = true
ark-poly.workspace = true
ark-serialize.workspace = true
blake2.workspace = true
hex.workspace = true
itertools.workspace = true
num-bigint.workspace = true
once_cell.workspace = true
rand.workspace = true
rand_core.workspace = true
rayon.workspace = true
rmp-serde.workspace = true
serde.workspace = true
serde_with.workspace = true
thiserror.workspace = true
groupmap.workspace = true
mina-curves.workspace = true
mina-poseidon.workspace = true
o1-utils.workspace = true
ocaml = { workspace = true, optional = true }
ocaml-gen = { workspace = true, optional = true }
[dev-dependencies]
criterion.workspace = true
rand_chacha.workspace = true
ark-bn254.workspace = true
[features]
ocaml_types = ["ocaml", "ocaml-gen"]
[[bench]]
name = "poly_comm"
harness = false
[[bench]]
name = "ipa"
harness = false
[[bench]]
name = "msm"
harness = false