forked from DelphinusLab/zkWasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (44 loc) · 1.26 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
[package]
name = "delphinus-zkwasm"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "cli"
path = "src/cli/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.68"
ark-std = { version = "0.3.0", features = ["print-trace"] }
downcast-rs = "1.2.0"
env_logger = "0.9.3"
halo2aggregator-s = { git = "https://github.com/DelphinusLab/halo2aggregator-s.git", tag = "bisect-lookup-0.3.2", features = ["unsafe"] }
halo2_proofs = { git = "https://github.com/junyu0312/halo2", branch = "gpu", default-features = true }
log = "0.4.17"
md5 = "0.7.0"
num-integer = "0.1"
num-bigint = { version = "0.4", features = ["rand"] }
num-traits = "0.2.15"
notify = "6.0.1"
wabt = "0.10.0"
wasmi = { path = "./wasmi" }
lazy_static = "1.4.0"
rand = "0.8.4"
sha2 = "0.10.6"
specs = { path = "./specs" }
strum = "0.24.1"
strum_macros = "0.24.1"
wast = "47.0.0"
clap = { version = "3.2.22", features = ["derive","cargo"] }
hex = "0.4.3"
uuid = { version = "1.2.2", features = ["serde", "v4"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bitvec = "1.0.1"
[dev-dependencies]
rusty-fork = "0.3.0"
[features]
default = []
checksum = []
cuda = ["halo2_proofs/cuda", "specs/cuda"]
[profile.dev]
opt-level = 3