-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
47 lines (40 loc) · 885 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
[package]
authors = [ "MaidSafe Developers <[email protected]>" ]
description = "Pairing threshold cryptography"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "blsttc"
readme = "README.md"
repository = "https://github.com/maidsafe/blsttc"
version = "8.0.2"
[dependencies]
ff = "0.12.0"
group = "0.12.0"
hex = "0.4.3"
hex_fmt = "0.3.0"
pairing = "0.22.0"
rand = "0.8.5"
rand_chacha = "0.3.1"
thiserror = "1.0.22"
zeroize = "1.5.7"
[dependencies.blst]
version = "0.3.7"
features = [ "portable" ]
[dependencies.blstrs]
version = "0.6.1"
features = [ "portable" ]
[dependencies.serde]
version = "1.0.104"
features = [ "derive" ]
[dependencies.tiny-keccak]
version = "2.0.1"
features = [ "sha3" ]
[dev-dependencies]
bincode = "1.3.3"
criterion = "0.4"
eyre = "0.6.5"
rand_core = "0.6.3"
rand_xorshift = "0.3.0"
[[bench]]
name = "bench"
harness = false