Bump ed25519-dalek version to 0.9.

This commit is contained in:
Isis Lovecruft 2019-01-17 22:41:18 +00:00
parent 35b4dfd24d
commit f851aaf464
No known key found for this signature in database
GPG key ID: AB41313533E8E812
2 changed files with 4 additions and 4 deletions

View file

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

View file

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