diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a0f8be..4981c62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.toml b/Cargo.toml index cca4b17..a0f5891 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] edition = "2018" description = "PASETO: Platform-Agnostic Security Tokens (in Rust)" @@ -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] diff --git a/src/lib.rs b/src/lib.rs index 966fa17..e7a9b54 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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]