-
Notifications
You must be signed in to change notification settings - Fork 94
/
Cargo.toml
52 lines (44 loc) · 1.21 KB
/
Cargo.toml
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
[package]
name = "poly-commitment"
version = "0.1.0"
description = "Library implementing different polynomial commitments schemes, like IPA and KZG10"
repository = "https://github.com/o1-labs/proof-systems"
homepage = "https://o1-labs.github.io/proof-systems/"
documentation = "https://o1-labs.github.io/proof-systems/rustdoc/"
readme = "../README.md"
edition = "2021"
license = "Apache-2.0"
[dependencies]
ark-ff.workspace = true
ark-ec.workspace = true
ark-poly.workspace = true
ark-serialize.workspace = true
blake2.workspace = true
itertools.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
o1-utils.workspace = true
mina-poseidon.workspace = true
ocaml = { workspace = true, optional = true }
ocaml-gen = { workspace = true, optional = true }
[dev-dependencies]
criterion.workspace = true
colored.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