From 4d1eaa8ddf8ff67b27911b0ac07c36ac0cd94e99 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 29 Mar 2026 17:38:50 -0600 Subject: [PATCH] Bump `hmac` to v0.13 Release PR: RustCrypto/MACs#263 --- Cargo.lock | 4 ++-- hkdf/Cargo.toml | 2 +- kbkdf/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c3078bc..a29d37c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -182,9 +182,9 @@ dependencies = [ [[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/hkdf/Cargo.toml b/hkdf/Cargo.toml index cedb052..6b241ab 100644 --- a/hkdf/Cargo.toml +++ b/hkdf/Cargo.toml @@ -13,7 +13,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -hmac = "0.13.0-rc.5" +hmac = "0.13" # optional dependencies kdf = { version = "0.1", optional = true } diff --git a/kbkdf/Cargo.toml b/kbkdf/Cargo.toml index 3b191b5..738944f 100644 --- a/kbkdf/Cargo.toml +++ b/kbkdf/Cargo.toml @@ -19,7 +19,7 @@ digest = { version = "0.11", default-features = false, features = ["mac"] } [dev-dependencies] hex-literal = "1" hex = "0.4" -hmac = { version = "0.13.0-rc.5", default-features = false } +hmac = { version = "0.13", default-features = false } sha2 = { version = "0.11", default-features = false } sha1 = { version = "0.11", default-features = false } cmac = "0.8.0-rc.4"