forked from DelphinusLab/zkWasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 824 Bytes
/
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
[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]
ark-std = { version = "0.3.0", features = ["print-trace"] }
downcast-rs = "1.2.0"
halo2_proofs = { git = "https://github.com/junyu0312/halo2", branch = "gpu", default-features = true }
num-integer = "0.1"
num-bigint = { version = "0.4", features = ["rand"] }
num-traits = "0.2.15"
wabt = "0.10.0"
wasmi = { path = "./wasmi" }
lazy_static = "1.4.0"
rand = "0.8.4"
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"
[features]
default = []
cuda = ["halo2_proofs/cuda", "specs/cuda"]