From 89aebc8f39455a5e11ad5e5911837c05a0d13f06 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 30 Mar 2026 10:23:18 -0600 Subject: [PATCH] Bump `hmac` dependency to v0.13 Release PR: RustCrypto/MACs#263 --- Cargo.lock | 4 ++-- pbkdf2/Cargo.toml | 4 ++-- yescrypt/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 964bd60e..59ac87d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -303,9 +303,9 @@ checksum = "e712f64ec3850b98572bffac52e2c6f282b29fe6c5fa6d42334b30be438d95c1" [[package]] name = "hmac" -version = "0.13.0-rc.6" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60017b071c523c9e5a55dd1253582bff6150c5e96a7e8511e419de1ab5ee97f9" +checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f" dependencies = [ "digest", ] diff --git a/pbkdf2/Cargo.toml b/pbkdf2/Cargo.toml index 4de097a7..972145f4 100644 --- a/pbkdf2/Cargo.toml +++ b/pbkdf2/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.85" digest = { version = "0.11", features = ["mac"] } # optional dependencies -hmac = { version = "0.13.0-rc.6", optional = true, default-features = false } +hmac = { version = "0.13", optional = true, default-features = false } kdf = { version = "0.1", optional = true } mcf = { version = "0.6", optional = true, default-features = false, features = ["base64"] } password-hash = { version = "0.6", default-features = false, optional = true } @@ -25,7 +25,7 @@ sha2 = { version = "0.11.0-rc.5", default-features = false, optional = true } [dev-dependencies] belt-hash = "0.2.0-rc.5" -hmac = "0.13.0-rc.6" +hmac = "0.13" hex-literal = "1" sha1 = "0.11.0-rc.5" sha2 = "0.11.0-rc.5" diff --git a/yescrypt/Cargo.toml b/yescrypt/Cargo.toml index 02fda6ce..174a47f2 100644 --- a/yescrypt/Cargo.toml +++ b/yescrypt/Cargo.toml @@ -15,7 +15,7 @@ rust-version = "1.85" [dependencies] ctutils = "0.4" -hmac = { version = "0.13.0-rc.6", default-features = false } +hmac = { version = "0.13", default-features = false } 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 }