-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (45 loc) · 1.98 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
[package]
name = "batch-verify-circuit"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# halo2wrong
num-bigint = { version = "0.4", features = ["rand"] }
num-integer = "0.1"
num-traits = "0.2"
# halo2 = { package = "halo2_proofs", git = "https://github.com/privacy-scaling-explorations/halo2", branch = "abstraction" }
group = "0.12"
# integer
rand = "0.8"
subtle = { version = "2.3", default-features = false }
# maingate
# ecc
# ecdsa
sha2 = "0.9"
hex = "0.4.3"
halo2_wrong_ecc = { package = "ecc", git = "https://github.com/machinefi/halo2wrong", rev="c79d8d5bd6d5148fafac5dd83158bc8380ddf893" }
halo2_wrong_ecdsa = { package = "ecdsa", git = "https://github.com/machinefi/halo2wrong", rev="c79d8d5bd6d5148fafac5dd83158bc8380ddf893" }
# halo2_wrong_ecc = { package = "ecc", git = "https://github.com/machinefi/halo2wrong", branch = "master" }
# generator
# halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", tag = "v0.3.0", features = ["dev-graph"]}
# halo2_curves = { git = "https://github.com/privacy-scaling-explorations/halo2curves", tag = "0.3.2", package = "halo2curves" }
# snark_verifier = { git = "https://github.com/privacy-scaling-explorations/snark-verifier.git", rev="fedd7a8", package = "snark-verifier" }
snark_verifier = { git = "https://github.com/machinefi/snark-verifier", branch = "main", package = "snark-verifier" }
itertools = "0.11.0"
plotters = { version = "0.3.0", default-features = true }
wasm-bindgen = "0.2.87"
getrandom = { version = "0.2", features = ["js"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_derive = "1.0"
clap = { version = "4.4.11", features = ["derive"] }
primitive-types = "0.12.2"
num-rational = "0.4.1"
[dev-dependencies]
rand = "0.8"
rand_core = { version = "0.6", default-features = false }
[lib]
crate-type = ["cdylib", "rlib"]
[package.metadata.wasm-pack.profile.release]
wasm-opt = false