mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
52050e4e10
3 changed files with 10 additions and 2 deletions
|
|
@ -2,6 +2,13 @@
|
|||
|
||||
Entries are listed in reverse chronological order.
|
||||
|
||||
## 0.6.0
|
||||
|
||||
* Updates `rand_core` version to `0.5`.
|
||||
* Adds `serde` support.
|
||||
* Replaces `clear_on_drop` with `zeroize`.
|
||||
* Use Rust 2018.
|
||||
|
||||
## 0.5.2
|
||||
|
||||
* Implement `Clone` for `StaticSecret`.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
[package]
|
||||
name = "x25519-dalek"
|
||||
edition = "2018"
|
||||
version = "0.5.2"
|
||||
# Be sure to update the version in README.md
|
||||
version = "0.6.0"
|
||||
authors = [
|
||||
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||
"DebugSteven <debugsteven@gmail.com>",
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ To install, add the following to your project's `Cargo.toml`:
|
|||
|
||||
```toml
|
||||
[dependencies.x25519-dalek]
|
||||
version = "^0.5"
|
||||
version = "0.6"
|
||||
```
|
||||
|
||||
# Documentation
|
||||
|
|
|
|||
Loading…
Reference in a new issue