forked from DelphinusLab/zkWasm-host-circuits
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (41 loc) · 1.35 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
[package]
name = "zkwasm-host-circuits"
authors = ["DelphinusLab <[email protected]>"]
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "zkwasm_host_circuits"
path = "src/lib.rs"
[[bin]]
name = "zkwasm-host-circuits-prover"
path = "src/main.rs"
[dependencies]
strum = "0.24.1"
strum_macros = "0.24.1"
ff = "0.12"
cfg-if = "1.0.0"
halo2_proofs = { git = "https://github.com/DelphinusLab/halo2-gpu-specific.git", default-features = true }
halo2ecc-s = { git = "https://github.com/lanbones/halo2ecc-s.git", tag = "bisect-lookup-0.3.3"}
itertools = "0.10.0"
num-bigint = { version = "0.4", features = ["rand"] }
poseidon = { git = "https://github.com/lanbones/poseidon" }
circuits-batcher = { git = "https://github.com/DelphinusLab/continuation-batcher.git" }
rand = "0.8"
rand_core = "0.6"
ark-std = { version = "0.3.0", features = ["print-trace"] }
serde = { version = "1.0", features = ["serde_derive"] }
serde_json = "1.0"
clap = { version = "3.2.22", features = ["derive", "cargo"] }
subtle = "2.4"
lazy_static = "1.4.0"
hex = "0.4"
mongodb = { version = "2.5.0", default-features = false}
ripemd = "0.1.3"
lru = "0.11.0"
[features]
default = ["mongo-tokio-sync"]
mongo-std-sync = ["mongodb/sync"]
mongo-tokio-sync = ["mongodb/tokio-sync"]
cuda = ["halo2_proofs/cuda"]
complex-leaf = []