forked from poanetwork/threshold_crypto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
54 lines (51 loc) · 1.39 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
[package]
name = "threshold_crypto_ce"
# REMINDER: Update version in `README.md` when incrementing:
version = "0.4.0"
authors = [
"Vladimir Komendantskiy <[email protected]>",
"Andreas Fackler <[email protected]>",
"Peter van Nostrand <[email protected]>",
"Andrew Gross <[email protected]>",
"Nick Sanders <[email protected]>",
"Marc Brinkmann <[email protected]>",
"Anton Grigorev <[email protected]>"
]
categories = ["cryptography"]
keywords = ["pairing", "threshold"]
license = "MIT/Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/threshold_crypto_ce/"
homepage = "https://github.com/matter-labs/threshold_crypto"
repository = "https://github.com/matter-labs/threshold_crypto"
description = "Pairing threshold cryptography"
edition = "2018"
include = [
".gitignore",
"src/*.rs",
"src/bls12/*.rs",
"src/bn256/*.rs",
"COPYRIGHT",
"LICENSE-MIT",
"LICENSE-APACHE",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"Cargo.toml"
]
[dependencies]
byteorder = "1.2.7"
errno = "0.2.4"
failure = "0.1.5"
hex_fmt = "0.3.0"
log = "0.4.6"
memsec = "0.5.4"
pairing = { package = "pairing_ce", version = "0.19.0" }
rand = "0.6.5"
rand04_compat = "0.1.1"
rand_chacha = "0.1.1"
serde = { version = "1.0.89", features = ["derive"] }
tiny-keccak = "1.4.2"
[dev-dependencies]
bincode = "1.0.1"
criterion = "0.2.7"
rand_xorshift = "0.1.1"