Version 0.4.0 (#102)

This commit is contained in:
Andreas Fackler 2020-07-28 19:33:31 +02:00 committed by GitHub
parent 8ec1e20fa3
commit 7709462f2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
[package] [package]
name = "threshold_crypto" name = "threshold_crypto"
# REMINDER: Update version in `README.md` when incrementing: # REMINDER: Update version in `README.md` when incrementing:
version = "0.3.2" version = "0.4.0"
authors = [ authors = [
"Vladimir Komendantskiy <komendantsky@gmail.com>", "Vladimir Komendantskiy <komendantsky@gmail.com>",
"Andreas Fackler <AndreasFackler@gmx.de>", "Andreas Fackler <AndreasFackler@gmx.de>",

View File

@ -24,7 +24,7 @@ An [official security audit](https://github.com/poanetwork/wiki/wiki/Threshold-C
```toml ```toml
[dependencies] [dependencies]
threshold_crypto = { version = "0.3", git = "https://github.com/poanetwork/threshold_crypto" } threshold_crypto = { version = "0.4", git = "https://github.com/poanetwork/threshold_crypto" }
``` ```
`main.rs`: `main.rs`:

View File

@ -11,6 +11,8 @@
)] )]
#![warn(missing_docs)] #![warn(missing_docs)]
pub use ff;
pub use group;
pub use pairing; pub use pairing;
mod cmp_pairing; mod cmp_pairing;