From 96db9fbba7a9d3d8c1fece25424216e8b2f037ec Mon Sep 17 00:00:00 2001 From: Andreas Fackler Date: Sat, 20 Oct 2018 11:56:42 +0200 Subject: [PATCH] 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 --- Cargo.toml | 24 +++++++++++++----------- README.md | 2 +- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 197418a..7cb6d4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,19 +1,21 @@ [package] name = "threshold_crypto" # REMINDER: Update version in `README.md` when incrementing: -version = "0.1.0" -authors = ["Vladimir Komendantskiy ", - "Andreas Fackler ", - "Peter van Nostrand ", - "Andrew Gross ", - "Nick Sanders ", - "Marc Brinkmann "] -description = "Pairing threshold cryptography" +version = "0.2.0" +authors = [ + "Vladimir Komendantskiy ", + "Andreas Fackler ", + "Peter van Nostrand ", + "Andrew Gross ", + "Nick Sanders ", + "Marc Brinkmann ", +] +categories = ["cryptography"] +keywords = ["pairing", "threshold"] license = "MIT/Apache-2.0" -repository = "https://github.com/poanetwork/threshold_crypto" readme = "README.md" -keywords = ["pairing", "threshold"] -categories = ["cryptography"] +repository = "https://github.com/poanetwork/threshold_crypto" +description = "Pairing threshold cryptography" [dependencies] byteorder = "1.2.3" diff --git a/README.md b/README.md index 5a71488..e767cbe 100644 --- a/README.md +++ b/README.md @@ -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`: