Skip to content

Commit

Permalink
Fix build for new ed25519-compact version and bump to 0.6.2 (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
brycx authored Sep 23, 2022
1 parent 444967d commit 24e0184
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### 0.6.2

__Date:__ September 23, 2022.

__Changelog:__
- Fix `ed25519-compact` imports that broke build after the crate bumped to `1.0.13+`

### 0.6.1

__Date:__ September 20, 2022.
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pasetors"
version = "0.6.1" # Update html_root_url in lib.rs along with this.
version = "0.6.2" # Update html_root_url in lib.rs along with this.
authors = ["brycx <[email protected]>"]
edition = "2018"
description = "PASETO: Platform-Agnostic Security Tokens (in Rust)"
Expand All @@ -22,9 +22,9 @@ serde_json = "1.0.41"
serde = { version = "1.0", features = ["derive"] }

[dependencies.ed25519-compact]
version = "1.0.11"
version = "1.0.14"
default-features = false
features = ["random"]
features = ["random", "signatures"]
optional = true

[dependencies.orion]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
unused_qualifications,
overflowing_literals
)]
#![doc(html_root_url = "https://docs.rs/pasetors/0.6.1")]
#![doc(html_root_url = "https://docs.rs/pasetors/0.6.2")]
#![cfg_attr(docsrs, feature(doc_cfg))]

#[macro_use]
Expand Down

0 comments on commit 24e0184

Please sign in to comment.