fork of https://github.com/poanetwork/threshold_crypto for the needs of nextgraph.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
[package]
|
|
name = "threshold_crypto"
|
|
# REMINDER: Update version in `README.md` when incrementing:
|
|
version = "0.3.2"
|
|
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"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
byteorder = "1.3.4"
|
|
failure = "0.1.7"
|
|
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"
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
tiny-keccak = { version = "2.0.1", features = ["sha3"] }
|
|
zeroize = "1.1.0"
|
|
|
|
# optional
|
|
bincode = { version = "1.2.1", optional = true }
|
|
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"
|
|
rand_xorshift = "0.2.0"
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|
|
|
|
[features]
|
|
use-insecure-test-only-mock-crypto = []
|
|
codec-support = ["codec", "bincode"]
|
|
|