Bump ed25519-dalek version to 1.0.0-pre.0.

This commit is contained in:
Isis Lovecruft 2018-11-06 01:56:13 +00:00
parent 4012da229c
commit 99c64cc403
No known key found for this signature in database
GPG key ID: AB41313533E8E812
2 changed files with 4 additions and 16 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ed25519-dalek" name = "ed25519-dalek"
version = "0.8.1" version = "1.0.0-pre.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

@ -89,18 +89,6 @@ can read qhasm, making it more readily and more easily auditable. We're of
the opinion that, ultimately, these features—combined with speed—are more the opinion that, ultimately, these features—combined with speed—are more
valuable than simply cycle counts alone. valuable than simply cycle counts alone.
# Warnings
ed25519-dalek and
[our elliptic curve library](https://github.com/dalek-cryptography/curve25519-dalek)
(which this code uses) have received *one* formal cryptographic and security
review. Neither have yet received what we would consider *sufficient* peer
review by other qualified cryptographers to be considered in any way, shape,
or form, safe.
**USE AT YOUR OWN RISK.**
### A Note on Signature Malleability ### A Note on Signature Malleability
The signatures produced by this library are malleable, as discussed in The signatures produced by this library are malleable, as discussed in
@ -130,7 +118,7 @@ To install, add the following to your project's `Cargo.toml`:
```toml ```toml
[dependencies.ed25519-dalek] [dependencies.ed25519-dalek]
version = "^0.8" version = "1"
``` ```
Then, in your library or executable source, add: Then, in your library or executable source, add:
@ -146,7 +134,7 @@ enabled by default, instead do:
```toml ```toml
[dependencies.ed25519-dalek] [dependencies.ed25519-dalek]
version = "^0.8" version = "1"
features = ["nightly"] features = ["nightly"]
``` ```
@ -163,7 +151,7 @@ To enable [serde](https://serde.rs) support, build `ed25519-dalek` with:
```toml ```toml
[dependencies.ed25519-dalek] [dependencies.ed25519-dalek]
version = "^0.8" version = "1"
features = ["serde"] features = ["serde"]
``` ```