-
Notifications
You must be signed in to change notification settings - Fork 40
/
Cargo.toml
46 lines (38 loc) · 975 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
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "zk-paillier"
version = "0.4.4"
edition = "2018"
description = "Collection of Paillier cryptosystem zero knowledge proofs written in Rust"
license = "GPL-3.0-or-later"
repository = "https://github.com/ZenGo-X/zk-paillier"
categories = ["cryptography", "algorithms"]
keywords = ["paillier", "homomorphic", "encryption", "zero-knowledge", "cryptoagorithms"]
authors = [
"Gary <gary@kzencorp.com>",
"Morten Dahl <mortendahlcs@gmail.com>",
"Omer <omer.shlomovits@gmail.com>"
]
[lib]
crate-type = ["lib"]
[dependencies]
rand = "0.6"
serde = { version = "1.0", features = ["derive"] }
rayon = "1.1"
bit-vec = "0.6"
sha2 = "0.9"
digest = "0.9"
thiserror = "1"
[dependencies.curv-kzen]
version = "0.10"
default-features = false
[dependencies.paillier]
package = "kzen-paillier"
version = "0.4.3"
default-features = false
[dev-dependencies]
criterion = "0.3"
[features]
default = ["curv-kzen/rust-gmp-kzen"]
[[bench]]
name = "all"
harness = false