From 987a8c4a785068c41f508d9a02fb48ee5fbe9559 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 12:59:09 +0000 Subject: [PATCH] deps: update sha2 requirement from 0.10 to 0.11 in /backend Updates the requirements on [sha2](https://github.com/RustCrypto/hashes) to permit the latest version. - [Commits](https://github.com/RustCrypto/hashes/compare/groestl-v0.10.0...sha2-v0.11.0) --- updated-dependencies: - dependency-name: sha2 dependency-version: 0.11.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 9f61c16..44fa6ea 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -40,7 +40,7 @@ regex = { version = "1.10", default-features = false, features = ["std"] } anyhow = "1.0" time = "0.3" -sha2 = "0.10" +sha2 = "0.11" hmac = "0.12" subtle = "2.5" reqwest = { version = "0.13", features = ["json"] }