From 991242045cc4fefc27643da385131f545422b651 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 16:12:56 +0000 Subject: [PATCH] build(deps): update hkdf requirement in /impl/rust/pqf-reader Updates the requirements on [hkdf](https://github.com/RustCrypto/KDFs) to permit the latest version. - [Commits](https://github.com/RustCrypto/KDFs/compare/hkdf-v0.12.0...hkdf-v0.13.0) --- updated-dependencies: - dependency-name: hkdf dependency-version: 0.13.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- impl/rust/pqf-reader/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/impl/rust/pqf-reader/Cargo.toml b/impl/rust/pqf-reader/Cargo.toml index 5b6ac1a..c58fe62 100644 --- a/impl/rust/pqf-reader/Cargo.toml +++ b/impl/rust/pqf-reader/Cargo.toml @@ -26,7 +26,7 @@ ml-dsa = "0.0.4" # AEAD + hashing + KDF aes-gcm = "0.10" sha2 = "0.10" -hkdf = "0.12" +hkdf = "0.13" # Encoding utilities base64 = "0.22"