forked from ZenGo-X/bulletproofs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 855 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
31
32
33
34
35
[package]
name = "bulletproof-kzen"
version = "1.2.1"
authors = [
"Omer Shlomovits <omer@kzencorp.com>",
"Suyash Bagad <suyashnbagad1997@gmail.com>"
]
license = "GPL-3.0"
description = "Implementation of Bulletproofs and Bulletproofs+ aggregated range proofs with multi-exponent verification"
repository = "https://github.com/ZenGo-X/bulletproofs"
categories = ["cryptography", "algorithms"]
keywords = ["cryptography", "crypto", "zero-knowledge", "bulletproofs"]
[lib]
name = "bulletproof"
crate-type = ["lib"]
[dependencies]
itertools = "0.7.8"
serde = "1.0"
serde_derive = "1.0"
curv-kzen = { version = "0.10", default-features = false }
sha2 = "0.9"
generic-array = "0.14"
[dev-dependencies]
criterion = "0.2"
[features]
default = ["curv-kzen/rust-gmp-kzen"]
[[bench]]
name = "range_proof"
path = "benches/range_proof.rs"
harness = false