forked from snipsco/rust-threshold-secret-sharing
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
64 lines (53 loc) · 1.21 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "threshold-secret-sharing"
version = "0.3.0-pre"
authors = [
"Morten Dahl <mortendahlcs@gmail.com>",
"Mathieu Poumeyrol <mathieu.poumeyrol@snips.ai>"
]
description = "A pure-Rust implementation of various threshold secret sharing schemes"
keywords = [
"secret-sharing",
"Shamir",
"cryptography",
"secure-computation",
"mpc"
]
homepage = "https://github.com/snipsco/rust-threshold-secret-sharing"
documentation = "https://docs.rs/threshold-secret-sharing"
license = "MIT/Apache-2.0"
categories = [ "cryptography" ]
[badges]
travis-ci = { repository = "snipsco/rust-threshold-secret-sharing" }
[features]
paramgen = ["primal", "num-traits"]
largefield = ["framp"]
safety_override = []
[dependencies]
rand = "0.3.*"
framp = { version = "0.3", optional = true }
primal = { version = "0.2", optional = true }
num-traits = { version = "0.1", optional = true }
[dev-dependencies]
bencher = "0.1"
[[bench]]
name = "fields"
harness = false
[[bench]]
name = "packed"
harness = false
[[bench]]
name = "versus"
harness = false
[[bench]]
name = "shamir_share"
harness = false
[[bench]]
name = "packed_share"
harness = false
[[bench]]
name = "numtheory"
harness = false
[[bench]]
name = "mpc"
harness = false