mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-06 20:41:14 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
ecee2a4708
2 changed files with 12 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ed25519-dalek"
|
name = "ed25519-dalek"
|
||||||
version = "0.4.3"
|
version = "0.5.0"
|
||||||
authors = ["Isis Lovecruft <isis@torproject.org>"]
|
authors = ["Isis Lovecruft <isis@torproject.org>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "BSD-3-Clause"
|
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`:
|
To install, add the following to your project's `Cargo.toml`:
|
||||||
|
|
||||||
[dependencies.ed25519-dalek]
|
[dependencies.ed25519-dalek]
|
||||||
version = "^0.4"
|
version = "^0.5"
|
||||||
|
|
||||||
Then, in your library or executable source, add:
|
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:
|
enabled by default, instead do:
|
||||||
|
|
||||||
[dependencies.ed25519-dalek]
|
[dependencies.ed25519-dalek]
|
||||||
version = "^0.4"
|
version = "^0.5"
|
||||||
features = ["nightly"]
|
features = ["nightly"]
|
||||||
|
|
||||||
To cause your application to instead build with the nightly feature enabled
|
To cause your application to instead build with the nightly feature enabled
|
||||||
|
|
@ -139,6 +139,15 @@ to the `Cargo.toml`:
|
||||||
[features]
|
[features]
|
||||||
nightly = ["ed25519-dalek/nightly"]
|
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
|
# TODO
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue