From 7fb2054ae75f6997da4ce027caca61be346fbf5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 12:58:57 +0000 Subject: [PATCH] deps: update hmac requirement from 0.12 to 0.13 in /backend Updates the requirements on [hmac](https://github.com/RustCrypto/MACs) to permit the latest version. - [Commits](https://github.com/RustCrypto/MACs/compare/hmac-v0.12.0...hmac-v0.13.0) --- updated-dependencies: - dependency-name: hmac dependency-version: 0.13.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 9f61c16..657fb7e 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -41,7 +41,7 @@ anyhow = "1.0" time = "0.3" sha2 = "0.10" -hmac = "0.12" +hmac = "0.13" subtle = "2.5" reqwest = { version = "0.13", features = ["json"] } html-escape = "0.2"