From 96c1cb5c373e6d7140f0deff34bd444ee1ae8a53 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 18:46:05 +0000 Subject: [PATCH] build(deps): bump hmac from 0.13.0-rc.5 to 0.13.0 Bumps [hmac](https://github.com/RustCrypto/MACs) from 0.13.0-rc.5 to 0.13.0. - [Commits](https://github.com/RustCrypto/MACs/compare/hmac-v0.13.0-rc.5...hmac-v0.13.0) --- updated-dependencies: - dependency-name: hmac dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- ssh-key/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4f172a7..b02e51d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -418,9 +418,9 @@ checksum = "e712f64ec3850b98572bffac52e2c6f282b29fe6c5fa6d42334b30be438d95c1" [[package]] name = "hmac" -version = "0.13.0-rc.5" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef451d73f36d8a3f93ad32c332ea01146c9650e1ec821a9b0e46c01277d544f8" +checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f" dependencies = [ "digest", ] diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 67657e6..3aafdf6 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -41,7 +41,7 @@ bcrypt-pbkdf = { version = "0.11.0-rc.6", optional = true, default-features = fa dsa = { version = "0.7.0-rc.14", optional = true, default-features = false, features = ["hazmat"] } ed25519-dalek = { version = "=3.0.0-pre.6", optional = true, default-features = false } hex = { version = "0.4", optional = true, default-features = false, features = ["alloc"] } -hmac = { version = "0.13.0-rc.5", optional = true } +hmac = { version = "0.13.0", optional = true } p256 = { version = "0.14.0-rc.8", optional = true, default-features = false, features = ["ecdsa"] } p384 = { version = "0.14.0-rc.8", optional = true, default-features = false, features = ["ecdsa"] } p521 = { version = "0.14.0-rc.8", optional = true, default-features = false, features = ["ecdsa"] }