-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 1.29 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 = "groth-sahai-wrappers"
version = "0.1.0"
authors = ["Jacob White <white570@purdue.edu>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Proof wrappers for the Groth-Sahai zero-knowledge proof system"
repository = "https://github.com/jdwhite88/groth-sahai-wrappers"
readme = "README.md"
keywords = ["cryptography", "NIZK", "zero-knowledge", "elliptic curve", "bilinear"]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ark-bls12-381 = { version = "^0.3.0" }
ark-crypto-primitives = { version = "0.3", features = [ "r1cs" ] }
ark-ec = { version = "^0.3.0", default-features = false }
ark-ff = { version = "^0.3.0", default-features = false }
ark-groth16 = { version = "^0.3.0", default-features = false }
ark-std = { version = "^0.3.0", default-features = false }
[dependencies.groth-sahai]
git = "https://github.com/jdwhite88/groth-sahai-rs"
rev = "efe94cd38f97a45a7807ab304f2643d058857d7d"
[dev-dependencies]
criterion = { version = "0.3", features = [ "html_reports" ] } # benchmarks
rand = "0.8"
ark-relations = "0.3"
ark-r1cs-std = "0.3"
[profile.release]
debug = true
[[bench]]
name = "bench"
harness = false