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 }