mirror of
https://github.com/dalek-cryptography/ed25519-dalek.git
synced 2026-01-10 11:37:58 -05:00
Bump ed25519-dalek version to 0.5.0.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "ed25519-dalek"
|
||||
version = "0.4.3"
|
||||
version = "0.5.0"
|
||||
authors = ["Isis Lovecruft <isis@torproject.org>"]
|
||||
readme = "README.md"
|
||||
license = "BSD-3-Clause"
|
||||
|
||||
13
README.md
13
README.md
@@ -119,7 +119,7 @@ eventually support VXEdDSA in curve25519-dalek.
|
||||
To install, add the following to your project's `Cargo.toml`:
|
||||
|
||||
[dependencies.ed25519-dalek]
|
||||
version = "^0.4"
|
||||
version = "^0.5"
|
||||
|
||||
Then, in your library or executable source, add:
|
||||
|
||||
@@ -129,7 +129,7 @@ To cause your application to build `ed25519-dalek` with the nightly feature
|
||||
enabled by default, instead do:
|
||||
|
||||
[dependencies.ed25519-dalek]
|
||||
version = "^0.4"
|
||||
version = "^0.5"
|
||||
features = ["nightly"]
|
||||
|
||||
To cause your application to instead build with the nightly feature enabled
|
||||
@@ -139,6 +139,15 @@ to the `Cargo.toml`:
|
||||
[features]
|
||||
nightly = ["ed25519-dalek/nightly"]
|
||||
|
||||
Using the `nightly` feature will nearly double the latency of signing and
|
||||
verification.
|
||||
|
||||
To enable [serde](https://serde.rs) support, build `ed25519-dalek` with:
|
||||
|
||||
[dependencies.ed25519-dalek]
|
||||
version = "^0.5"
|
||||
features = ["serde"]
|
||||
|
||||
|
||||
# TODO
|
||||
|
||||
|
||||
Reference in New Issue
Block a user