Version 0.2.0

Also: Follow the soon-to-be-official formatting guidelines:
https://github.com/nrc/rfcs/blob/style-guide/style-guide/cargo.md
This commit is contained in:
Andreas Fackler 2018-10-20 11:56:42 +02:00 committed by Andreas Fackler
parent 29b40fffa7
commit 96db9fbba7
2 changed files with 15 additions and 13 deletions

View File

@ -1,19 +1,21 @@
[package]
name = "threshold_crypto"
# REMINDER: Update version in `README.md` when incrementing:
version = "0.1.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>"]
description = "Pairing threshold cryptography"
license = "MIT/Apache-2.0"
repository = "https://github.com/poanetwork/threshold_crypto"
readme = "README.md"
keywords = ["pairing", "threshold"]
version = "0.2.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/poanetwork/threshold_crypto"
description = "Pairing threshold cryptography"
[dependencies]
byteorder = "1.2.3"

View File

@ -19,7 +19,7 @@ decrypted and authenticated only with cooperation from at least `threshold +
```toml
[dependencies]
rand = "0.4"
threshold_crypto = { version = "0.1", git = "https://github.com/poanetwork/threshold_crypto" }
threshold_crypto = { version = "0.2", git = "https://github.com/poanetwork/threshold_crypto" }
```
`main.rs`: