From b5d233ac19105bb2686026a629e356eb7ec859b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Apr 2026 19:45:17 +0000 Subject: [PATCH] cargo: update hmac requirement from 0.12 to 0.13 in /src-tauri 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] --- src-tauri/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 509c618..f479aef 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -36,7 +36,7 @@ thiserror = "1" # HTTP client for Claude API reqwest = { version = "0.12", features = ["json", "stream"] } futures = "0.3" -hmac = "0.12" +hmac = "0.13" sha2 = "0.10" hex = "0.4" jsonwebtoken = "9" # EdDSA / Ed25519 JWT verification for signed license responses (issue #22)