-
Notifications
You must be signed in to change notification settings - Fork 50
/
Cargo.toml
39 lines (35 loc) · 1.17 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
[package]
name = "nova-scotia"
version = "0.5.0"
edition = "2021"
authors = ["Nalin <novascotia@nibnalin.me>"]
description = "Middleware to compile Circom circuits to Nova zkSNARK scheme"
documentation = "https://github.com/nalinbhardwaj/Nova-Scotia/blob/main/README.md"
readme = "README.md"
repository = "https://github.com/nalinbhardwaj/Nova-Scotia"
license-file = "LICENSE"
keywords = ["zkSNARKs", "cryptography", "proofs"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.65"
bellperson = { version = "0.25", default-features = false }
byteorder = "1.4.3"
ff = { version = "0.13", features = ["derive"]}
hex-literal = "0.3.4"
itertools = "0.9.0"
nova-snark = "0.23.0"
num-bigint = { version = "0.4", features = ["serde", "rand"] }
num-traits = "0.2.15"
pasta_curves = "0.5"
serde = "1.0"
serde_json = "1.0.85"
[target.'cfg(target_family = "wasm")'.dependencies]
wasm-bindgen = { version = "0.2.81", features = ["serde-serialize"]}
rayon = "1.5"
wasm-bindgen-rayon = { version = "1.0"}
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
[features]
default = []
cuda = ["nova-snark/cuda"]
opencl = ["nova-snark/opencl"]