forked from ICME-Lab/zkEngine_dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (46 loc) · 1.66 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
51
52
[package]
name = "zk-engine"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
wasmi = { path = "./third-party/wasmi/crates/wasmi" }
wasmi_wasi = { path = "./third-party/wasmi/crates/wasi" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
nova = { git = "https://github.com/wyattbenno777/arecibo", branch = "wyatt_dev", package = "arecibo" }
halo2curves = { version = "0.5.0", features = ["bits", "derive_serde"] }
bellpepper = { git = "https://github.com/lurk-lab/bellpepper", branch = "dev" }
bellpepper-core = { version = "0.4.0", default-features = false }
ff = "0.13"
itertools = "0.12.0"
wat = "1.200.0"
rand_xorshift = "0.3.0"
rand = "0.8.5"
anyhow = "1.0.81"
flate2 = { version = "1.0.28", features = [
"zlib-ng",
], default-features = false }
bincode = "1.3"
paste = "1.0.14"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing = { version = "0.1.40", features = ["log"] }
thiserror = "1.0.61"
reqwest = { version = "0.12.5", optional = true, features = [
"blocking",
"multipart",
] }
[features]
k3 = ["reqwest"]
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
rustyline = { version = "13.0", features = [
"derive",
], default-features = false }
halo2curves = { version = "0.5.0", default-features = false, features = [
"bits",
"derive_serde",
] }
[patch.crates-io]
# This is needed to ensure halo2curves, which imports pasta-curves, uses the *same* traits in bn256_grumpkin
pasta_curves = { git = "https://github.com/lurk-lab/pasta_curves", branch = "dev" }