forked from axiom-crypto/halo2-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (40 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
47 lines (40 loc) · 1.13 KB
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
[package]
name = "halo2-wasm"
version = "0.1.45"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
wasm-bindgen = "0.2.87"
halo2-base = { git = "https://github.com/axiom-crypto/halo2-lib.git", package = "halo2-base", branch="develop", features = [
"halo2-axiom",
] }
snark-verifier-sdk = { git = "https://github.com/axiom-crypto/snark-verifier.git", branch="develop", default-features = false, features = [
"loader_halo2",
"halo2-axiom",
] }
snark-verifier = { git = "https://github.com/axiom-crypto/snark-verifier.git", branch="develop", default-features = false, features = [
"loader_halo2",
"halo2-axiom",
] }
getrandom = { version = "0.2", features = ["js"] }
rand = "0.8"
itertools = "0.10"
web-sys = { version = "0.3", features = [
"Request",
"Window",
"Response",
"console",
] }
console_error_panic_hook = "0.1.7"
js-sys = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.4"
serde_bytes = "0.11"
bincode = "1.3"
tsify = "0.4.5"
[target.'cfg(target_family = "wasm")'.dependencies]
wasm-bindgen-rayon = { version = "1.0" }
[features]
default=["rayon"]
rayon=[]