This repository was archived by the owner on Jun 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (57 loc) · 1.33 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (57 loc) · 1.33 KB
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
65
66
[package]
name = "blsttc"
version = "3.4.0"
authors = [
"Vladimir Komendantskiy <komendantsky@gmail.com>",
"Andreas Fackler <AndreasFackler@gmx.de>",
"Peter van Nostrand <jnz@riseup.net>",
"Andrew Gross <andogro@gmail.com>",
"Nick Sanders <nsan1129@gmail.com>",
"Marc Brinkmann <git@marcbrinkmann.de>"
]
categories = [ "cryptography" ]
keywords = [ "pairing", "threshold" ]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/maidsafe/blsttc"
description = "Pairing threshold cryptography"
edition = "2018"
[dependencies]
byteorder = "1.3.4"
ff = "0.6.0"
group = "0.6.0"
hex_fmt = "0.3.0"
log = "0.4.8"
pairing = "0.16.0"
rand = "0.7.3"
rand_chacha = "0.2.2"
thiserror = "1.0.22"
zeroize = "1.1.0"
[dependencies.blst]
version = "0.3.3"
features = [ "portable" ]
[dependencies.serde]
version = "1.0.104"
features = [ "derive" ]
[dependencies.tiny-keccak]
version = "2.0.1"
features = [ "sha3" ]
[dependencies.bincode]
version = "1.2.1"
optional = true
[dependencies.codec]
package = "parity-scale-codec"
version = "1.2.0"
default-features = false
features = [ "derive" ]
optional = true
[dev-dependencies]
bincode = "1.2.1"
criterion = "0.3.1"
hex = "0.4.3"
rand_xorshift = "0.2.0"
[[bench]]
name = "bench"
harness = false
[features]
codec-support = [ "codec", "bincode" ]