forked from mortendahl/rust-paillier
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Cargo.toml
50 lines (39 loc) · 943 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
47
48
49
50
[package]
name = "kzen-paillier"
version = "0.4.3"
edition = "2018"
description = "Efficient pure-Rust library for the Paillier partially homomorphic encryption scheme"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZenGo-X/rust-paillier"
categories = ["cryptography", "algorithms"]
keywords = ["paillier", "homomorphic", "encryption", "zero-knowledge", "cryptoagorithms"]
[dependencies]
rayon = "1.1"
serde = { version = "1.0", features = ["derive"] }
curv-kzen = { version = "0.10.0", default-features = false }
[dev-dependencies]
bencher = "0.1"
serde_json = "1.0"
rand = "0.6"
[features]
default = ["curv-kzen/rust-gmp-kzen"]
[[bench]]
name = "arith"
harness = false
[[bench]]
name = "encryption"
harness = false
[[bench]]
name = "keygen"
harness = false
[[bench]]
name = "proof"
harness = false
[[example]]
name = "basic"
[[example]]
name = "core"
[[example]]
name = "packed"
[[example]]
name = "simple-voting"