-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
53 lines (44 loc) · 1.56 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
53
[package]
name = "zk-engine"
version = "0.1.0"
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
wasmi = { path = "./third-party/wasmi/crates/wasmi" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
nova = { git = "https://github.com/wyattbenno777/arecibo", branch = "feat/nebula", package = "arecibo" }
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"
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"
tracing-texray = "0.2.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
rustyline = { version = "13.0", features = [
"derive",
], default-features = false }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmi_wasi = { path = "./third-party/wasmi/crates/wasi" }
[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" }
[[example]]
name = "fib"
path = "examples/v1/fib.rs"
[[example]]
name = "fib_large"
path = "examples/v1/fib_large.rs"
[[example]]
name = "kth_factor"
path = "examples/v1/kth_factor.rs"