From dc5d21f9d2771231b5fb03b641c80348bd8f16d5 Mon Sep 17 00:00:00 2001 From: "academy-renovate[bot]" <186881925+academy-renovate[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 04:47:06 +0000 Subject: [PATCH] fix(deps): update rust crate hmac to 0.13.0 --- Cargo.lock | 2 +- Cargo.nix | 2 +- academy_shared/impl/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 74d528cd..a5360602 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -737,7 +737,7 @@ dependencies = [ "argon2", "chrono", "hex", - "hmac 0.12.1", + "hmac 0.13.0", "jwt", "rand 0.10.1", "serde", diff --git a/Cargo.nix b/Cargo.nix index c6c9c05d..81bbf454 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -3731,7 +3731,7 @@ rec { } { name = "hmac"; - packageId = "hmac 0.12.1"; + packageId = "hmac 0.13.0"; usesDefaultFeatures = false; } { diff --git a/academy_shared/impl/Cargo.toml b/academy_shared/impl/Cargo.toml index 8b5e33c1..a1ffc7ad 100644 --- a/academy_shared/impl/Cargo.toml +++ b/academy_shared/impl/Cargo.toml @@ -20,7 +20,7 @@ anyhow.workspace = true argon2.workspace = true chrono.workspace = true hex.workspace = true -hmac = { version = "0.12.1", default-features = false } +hmac = { version = "0.13.0", default-features = false } jwt = { version = "0.16.0", default-features = false } rand.workspace = true serde.workspace = true