-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathCargo.toml
93 lines (80 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "kimchi"
version = "0.1.0"
description = "The kimchi proof system"
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"
[lib]
path = "src/lib.rs"
bench = false # needed for criterion (https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options)
[dependencies]
ark-ff.workspace = true
ark-ec.workspace = true
ark-poly.workspace = true
ark-serialize.workspace = true
ark-bn254 = { workspace = true, optional = true }
blake2.workspace = true
num-bigint.workspace = true
num-derive.workspace = true
num-integer.workspace = true
num-traits.workspace = true
itertools.workspace = true
log.workspace = true
rand = { workspace = true, features = ["std_rng"] }
rand_core.workspace = true
rayon.workspace = true
rmp-serde.workspace = true
serde.workspace = true
serde_with.workspace = true
thiserror.workspace = true
once_cell.workspace = true
hex.workspace = true
strum.workspace = true
strum_macros.workspace = true
ocaml = { workspace = true, optional = true }
ocaml-gen = { workspace = true, optional = true }
wasm-bindgen = { workspace = true, optional = true }
internal-tracing.workspace = true
# Internal dependencies
turshi.workspace = true
poly-commitment.workspace = true
groupmap.workspace = true
mina-curves.workspace = true
o1-utils.workspace = true
mina-poseidon.workspace = true
[dev-dependencies]
proptest.workspace = true
proptest-derive.workspace = true
colored.workspace = true
serde_json.workspace = true
num-bigint.workspace = true
secp256k1.workspace = true
# benchmarks
criterion.workspace = true
iai.workspace = true
[[bench]]
name = "proof_criterion"
harness = false
[[bench]]
name = "proof_iai"
harness = false
[[bench]]
name = "amortization"
harness = false
[features]
default = []
internal_tracing = ["internal-tracing/enabled"]
ocaml_types = [
"ocaml",
"ocaml-gen",
"poly-commitment/ocaml_types",
"mina-poseidon/ocaml_types",
"internal-tracing/ocaml_types",
]
bn254 = ["ark-bn254"]
wasm_types = ["wasm-bindgen"]
check_feature_flags = []