forked from MystenLabs/fastcrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (40 loc) · 906 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
[package]
name = "fastcrypto-tbls"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Mysten Labs <[email protected]>"]
readme = "README.md"
description = "Threshold BLS and DKG protocols"
repository = "https://github.com/MystenLabs/fastcrypto"
[dependencies]
fastcrypto = { path = "../fastcrypto", features = ["aes"] }
rand.workspace = true
serde.workspace = true
typenum.workspace = true
sha3.workspace = true
digest.workspace = true
bcs.workspace = true
tracing.workspace = true
zeroize.workspace = true
itertools = "0.10.5"
hex = "0.4.3"
tap = { version = "1.0.1", features = [] }
[dev-dependencies]
criterion = "0.4.0"
generic-tests = "0.1.2"
[[bench]]
name = "polynomial"
harness = false
[[bench]]
name = "dkg"
harness = false
[[bench]]
name = "nidkg"
harness = false
required-features = ["experimental"]
[[bench]]
name = "tbls"
harness = false
[features]
default = []