diff --git a/Cargo.lock b/Cargo.lock index 1e8573bc..246b6f04 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -440,7 +440,7 @@ dependencies = [ [[package]] name = "pbkdf2" -version = "0.13.0-rc.9" +version = "0.13.0-rc.10" dependencies = [ "belt-hash", "digest", diff --git a/bcrypt-pbkdf/Cargo.toml b/bcrypt-pbkdf/Cargo.toml index b348d83e..435a04d2 100644 --- a/bcrypt-pbkdf/Cargo.toml +++ b/bcrypt-pbkdf/Cargo.toml @@ -15,7 +15,7 @@ rust-version = "1.85" [dependencies] blowfish = { version = "0.10.0-rc.3", features = ["bcrypt"] } -pbkdf2 = { version = "0.13.0-rc.9", default-features = false } +pbkdf2 = { version = "0.13.0-rc.10", default-features = false } sha2 = { version = "0.11.0-rc.5", default-features = false } # optional features diff --git a/password-auth/Cargo.toml b/password-auth/Cargo.toml index 1b2ae602..2359b9a9 100644 --- a/password-auth/Cargo.toml +++ b/password-auth/Cargo.toml @@ -22,7 +22,7 @@ password-hash = { version = "0.6", features = ["alloc", "getrandom", "phc"] } # optional dependencies argon2 = { version = "0.6.0-rc.7", optional = true, default-features = false, features = ["alloc", "password-hash"] } -pbkdf2 = { version = "0.13.0-rc.9", optional = true, default-features = false, features = ["phc"] } +pbkdf2 = { version = "0.13.0-rc.10", optional = true, default-features = false, features = ["phc"] } scrypt = { version = "0.12.0-rc.10", optional = true, default-features = false, features = ["phc"] } [features] diff --git a/pbkdf2/Cargo.toml b/pbkdf2/Cargo.toml index 22830c38..4de097a7 100644 --- a/pbkdf2/Cargo.toml +++ b/pbkdf2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbkdf2" -version = "0.13.0-rc.9" +version = "0.13.0-rc.10" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Generic implementation of PBKDF2" diff --git a/scrypt/Cargo.toml b/scrypt/Cargo.toml index 004ddbda..8e14b31b 100644 --- a/scrypt/Cargo.toml +++ b/scrypt/Cargo.toml @@ -15,7 +15,7 @@ rust-version = "1.85" [dependencies] cfg-if = "1.0" -pbkdf2 = { version = "0.13.0-rc.9", path = "../pbkdf2" } +pbkdf2 = { version = "0.13.0-rc.10", path = "../pbkdf2" } salsa20 = { version = "0.11.0-rc.2", default-features = false } sha2 = { version = "0.11.0-rc.5", default-features = false } rayon = { version = "1.11", optional = true } diff --git a/yescrypt/Cargo.toml b/yescrypt/Cargo.toml index 36dff2a6..02fda6ce 100644 --- a/yescrypt/Cargo.toml +++ b/yescrypt/Cargo.toml @@ -16,7 +16,7 @@ rust-version = "1.85" [dependencies] ctutils = "0.4" hmac = { version = "0.13.0-rc.6", default-features = false } -pbkdf2 = { version = "0.13.0-rc.9", default-features = false, features = ["hmac"] } +pbkdf2 = { version = "0.13.0-rc.10", default-features = false, features = ["hmac"] } salsa20 = { version = "0.11.0-rc.2", default-features = false } sha2 = { version = "0.11.0-rc.5", default-features = false }