-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
83 lines (72 loc) · 1.56 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
[package]
name = "zkml"
version = "0.0.1"
edition = "2021"
description = "Zero-knowledge machine learning"
license = "LICENSE"
homepage = "https://github.com/ddkang/zkml"
repository = "https://github.com/ddkang/zkml-public.git"
readme = "README.md"
exclude = [
"params",
"params_kzg",
"python",
]
[dependencies]
bitvec = "1.0.1"
halo2 = { path = "halo2/halo2"}
halo2curves = { path = "halo2/halo2curves"}
halo2_gadgets = { path = "halo2/halo2_gadgets", features = ["circuit-params"] }
halo2_proofs = { path = "halo2/halo2_proofs", features = ["circuit-params", "dev-graph"] }
ecc = { path = "halo2/ecc"}
graphviz-rust = "0.9.0"
lazy_static = "1.4.0"
ndarray = "0.15.6"
num-bigint = "0.4.3"
num-traits = "0.2.15"
once_cell = "1.15.0"
rand = "0.8.5"
rmp-serde = "1.1.1"
rounded-div = "0.1.2"
serde = "1.0.152"
serde_derive = "1.0.152"
serde_json = "1.0.85"
wav = "1.0.0"
rayon = "1.5.1"
plotters = "0.3.6"
#[dev-dependencies]
rand_core = "0.6.4"
criterion = "0.5.1"
group = "0.13.0"
ff = "0.13.0"
csv = "1.1"
[[bench]]
name = "benchmark_ipa_fft"
harness = false
[[bench]]
name = "benchmark_ipa_msm"
harness = false
[[bench]]
name = "benchmark_ipa_mul"
harness = false
[[bench]]
name = "benchmark_ipa_add"
harness = false
[[bench]]
name = "benchmark_ipa_permute_expression_pair"
harness = false
[[bench]]
name = "benchmark_kzg_fft"
harness = false
[[bench]]
name = "benchmark_kzg_msm"
harness = false
[[bench]]
name = "benchmark_kzg_mul"
harness = false
[[bench]]
name = "benchmark_kzg_add"
harness = false
[[bench]]
name = "benchmark_kzg_permute_expression_pair"
harness = false