From 2eb7eae61ce46960a149f3ce81bd9dbb1c947f2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:03:51 +0000 Subject: [PATCH] chore(deps): Update napi requirement in /src/code-validator/guest Updates the requirements on [napi](https://github.com/napi-rs/napi-rs) to permit the latest version. - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](https://github.com/napi-rs/napi-rs/compare/napi@2.0.0...napi-v3.8.4) --- updated-dependencies: - dependency-name: napi dependency-version: 3.8.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- src/code-validator/guest/host/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/code-validator/guest/host/Cargo.toml b/src/code-validator/guest/host/Cargo.toml index e374b94..e2d1a3a 100644 --- a/src/code-validator/guest/host/Cargo.toml +++ b/src/code-validator/guest/host/Cargo.toml @@ -17,7 +17,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] hyperlight-host = { workspace = true } -napi = { version = "2", features = ["async", "napi6"] } +napi = { version = "3", features = ["async", "napi6"] } napi-derive = "2" sha2 = "0.11" hex = "0.4"