threshold_crypto/Cargo.toml

48 lines
1.1 KiB
TOML

[package]
name = "threshold_crypto"
# REMINDER: Update version in `README.md` when incrementing:
version = "0.2.1"
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/poanetwork/threshold_crypto"
description = "Pairing threshold cryptography"
[dependencies]
byteorder = "1.2.7"
errno = "0.2.4"
failure = "0.1.3"
hex_fmt = "0.2.0"
init_with = "1.1.0"
lazy_static = "1.1.0"
log = "0.4.5"
memsec = "0.5.4"
pairing = { version = "0.14.2", features = ["u128-support"] }
rand = "0.4.3"
rand_derive = "0.3.1"
serde = "1.0.80"
serde_derive = "1.0.80"
tiny-keccak = "1.4.2"
[dev-dependencies]
bincode = "1.0.1"
criterion = "0.2.5"
rand = "0.4.3"
serde_derive = "1.0.80"
[[bench]]
name = "bench"
harness = false
[features]
use-insecure-test-only-mock-crypto = []