Bump ed25519-dalek version to 0.8.0.

This commit is contained in:
Isis Lovecruft 2018-07-27 21:35:36 +00:00
parent f67d955100
commit 591aff7025
Failed to extract signature
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "ed25519-dalek"
version = "0.7.0"
version = "0.8.0"
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>"]
readme = "README.md"
license = "BSD-3-Clause"

View file

@ -130,7 +130,7 @@ To install, add the following to your project's `Cargo.toml`:
```toml
[dependencies.ed25519-dalek]
version = "^0.7"
version = "^0.8"
```
Then, in your library or executable source, add:
@ -146,7 +146,7 @@ enabled by default, instead do:
```toml
[dependencies.ed25519-dalek]
version = "^0.7"
version = "^0.8"
features = ["nightly"]
```
@ -163,7 +163,7 @@ To enable [serde](https://serde.rs) support, build `ed25519-dalek` with:
```toml
[dependencies.ed25519-dalek]
version = "^0.7"
version = "^0.8"
features = ["serde"]
```