From 7767bafbad6a06fba5eab8f9912bd4c25dcde883 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Apr 2026 12:21:35 +0000 Subject: [PATCH] chore(deps): Update sha2 requirement in /src/code-validator/guest 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] --- src/code-validator/guest/host/Cargo.toml | 4 ++-- src/code-validator/guest/runtime/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/code-validator/guest/host/Cargo.toml b/src/code-validator/guest/host/Cargo.toml index e753e76..e374b94 100644 --- a/src/code-validator/guest/host/Cargo.toml +++ b/src/code-validator/guest/host/Cargo.toml @@ -19,7 +19,7 @@ crate-type = ["cdylib", "rlib"] hyperlight-host = { workspace = true } napi = { version = "2", features = ["async", "napi6"] } napi-derive = "2" -sha2 = "0.10" +sha2 = "0.11" hex = "0.4" base64 = "0.22" serde = { version = "1", features = ["derive"] } @@ -32,5 +32,5 @@ cargo-hyperlight = "0.1.7" napi-build = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" -sha2 = "0.10" +sha2 = "0.11" hex = "0.4" diff --git a/src/code-validator/guest/runtime/Cargo.toml b/src/code-validator/guest/runtime/Cargo.toml index 3d1411b..078012a 100644 --- a/src/code-validator/guest/runtime/Cargo.toml +++ b/src/code-validator/guest/runtime/Cargo.toml @@ -27,7 +27,7 @@ nom = { version = "8.0", default-features = false, features = ["alloc"] } spin = "0.10" rquickjs = { version = "0.11", default-features = false, features = ["bindgen", "loader"] } hashbrown = "0.16" -sha2 = { version = "0.10", default-features = false } +sha2 = { version = "0.11", default-features = false } [target.'cfg(hyperlight)'.dependencies] hyperlight-common = { workspace = true, default-features = false }