From 854f693b7eabdf86121f1235e44837b0516d7bf8 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 27 Dec 2025 19:44:15 -0700 Subject: [PATCH] password-hash v0.6.0-rc.7 --- Cargo.lock | 2 +- password-hash/Cargo.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9df960cb..2e336b80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -322,7 +322,7 @@ dependencies = [ [[package]] name = "password-hash" -version = "0.6.0-rc.6" +version = "0.6.0-rc.7" dependencies = [ "getrandom", "phc", diff --git a/password-hash/Cargo.toml b/password-hash/Cargo.toml index a102ed38..61d05145 100644 --- a/password-hash/Cargo.toml +++ b/password-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "password-hash" -version = "0.6.0-rc.6" +version = "0.6.0-rc.7" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" @@ -11,9 +11,9 @@ license = "MIT OR Apache-2.0" categories = ["authentication", "cryptography", "no-std"] keywords = ["crypt", "mcf", "password", "pbkdf", "phc"] description = """ -Traits which describe the functionality of password hashing algorithms, -as well as a `no_std`-friendly implementation of the PHC string format -(a well-defined subset of the Modular Crypt Format a.k.a. MCF) +Traits which describe the functionality of password hashing algorithms, with optional support for a +`no_std`-friendly implementation of the PHC string format, as well as generic support for other +formats (e.g. Modular Crypt Format) """ [dependencies]