From 26061b5074f5bd8d0ccd26b32c6088e60c339723 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 21:53:46 +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 d9842f0..04d67f2 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)