From d083721ed7aa69764f3d3daa73934cf3ebf8411c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 06:20:34 +0000 Subject: [PATCH] deps(deps): update hmac requirement from 0.12 to 0.13 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] --- executor/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executor/Cargo.toml b/executor/Cargo.toml index 3e47472..9c165bb 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] axum = "0.8" axum-server = { version = "0.8", features = ["tls-rustls"] } -hmac = "0.12" +hmac = "0.13" jaws = { version = "1", default-features = false, features = ["p256"] } p256 = { version = "0.13", features = ["ecdsa"] } pggomtm = { path = "..", default-features = false, features = ["database-token-contract"] }