-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
30 lines (26 loc) · 998 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
[package]
name = "groth-sahai"
version = "0.1.0"
authors = ["Jacob White <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "An implementation of the Groth-Sahai zero-knowledge proof system in Rust"
repository = "https://github.com/jdwhite88/groth-sahai-rs"
readme = "README.md"
keywords = ["cryptography", "NIZK", "zero-knowledge", "elliptic curve", "bilinear"]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
[dependencies]
ark-ec = { version = "^0.5.0", default-features = false }
ark-ff = { version = "^0.5.0", default-features = false }
ark-std = { version = "^0.5.0", default-features = false }
rayon = { version = "^1.5.1" }
ark-serialize = { version = "^0.5.0", features = ["derive"] }
[dev-dependencies]
ark-bls12-381 = { version = "^0.5.0" }
criterion = { version = "0.5", features = [ "html_reports" ] } # benchmarks
[profile.release]
debug = true
[[bench]]
name = "bench"
harness = false