forked from Ethan-000/halo2_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 893 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
33
34
[workspace]
members = [
"crates/noir_halo2_backend_axiom",
"crates/noir_halo2_backend_common",
"crates/noir_halo2_backend_pse",
"crates/noir_halo2_backend_zcash",
]
default-members = ["crates/noir_halo2_backend_pse"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
acvm = "0.18.1"
rand = "0.8"
reqwest = { version = "0.11.16", default-features = false, features = [
"stream",
"rustls-tls",
] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.68"
noir_halo2_backend_common = { path = "crates/noir_halo2_backend_common" }
# wasm
console_error_panic_hook = "0.1.7"
getrandom = { version = "0.2", features = ["js"] }
serde-wasm-bindgen = "0.5.0"
tokio = { version = "1.28.1", features = ["rt"] }
wasm-bindgen = { version = "0.2.81", features = ["serde-serialize"] }