From c37cd085efa4794783221c5a03c122b15b10c47f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Mar 2026 21:55:05 +0000 Subject: [PATCH 1/2] Update sha2 requirement from 0.10 to 0.11 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.10.9) --- updated-dependencies: - dependency-name: sha2 dependency-version: 0.10.9 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- drivers/shared/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/shared/Cargo.toml b/drivers/shared/Cargo.toml index 32059181..b6937cc0 100644 --- a/drivers/shared/Cargo.toml +++ b/drivers/shared/Cargo.toml @@ -10,7 +10,7 @@ shared = { workspace = true } device = { workspace = true } getrandom = { version = "0.4.2" } -sha2 = { version = "0.10", features = ["asm"] } +sha2 = { version = "0.11", features = ["asm"] } [dev-dependencies] critical-section = { workspace = true, features = ["std"] } From 054837e2dac3743e0721c3a4084562b5940e2cd1 Mon Sep 17 00:00:00 2001 From: Alix ANNERAUD Date: Thu, 26 Mar 2026 13:22:10 +0100 Subject: [PATCH 2/2] Remove 'asm' feature from sha2 dependency in Cargo.toml --- drivers/shared/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/shared/Cargo.toml b/drivers/shared/Cargo.toml index b6937cc0..72432f0c 100644 --- a/drivers/shared/Cargo.toml +++ b/drivers/shared/Cargo.toml @@ -10,7 +10,7 @@ shared = { workspace = true } device = { workspace = true } getrandom = { version = "0.4.2" } -sha2 = { version = "0.11", features = ["asm"] } +sha2 = { version = "0.11" } [dev-dependencies] critical-section = { workspace = true, features = ["std"] }