From 2d780ca9b45d505ea8e4bb83266e3145c02134a9 Mon Sep 17 00:00:00 2001 From: Rahul Date: Thu, 16 Jul 2026 14:37:39 -0700 Subject: [PATCH 1/3] update openvino-rs to 0.11.0 --- Cargo.lock | 12 ++++++------ crates/wasi-nn/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 68340eb8fe1f..4b6d839681e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2719,9 +2719,9 @@ dependencies = [ [[package]] name = "openvino" -version = "0.9.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3308ec088481c27b5b521598ced2d5d5f67253d9639f5a3cce5a2ea4c4062a94" +checksum = "118567863ab1a45b3e9b2df6ebf988dd6164752ef5099160a412f754b95b75a7" dependencies = [ "openvino-finder", "openvino-sys", @@ -2729,9 +2729,9 @@ dependencies = [ [[package]] name = "openvino-finder" -version = "0.9.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bba5393f3522f98d9c4703a6a73afc7feff2bf9cc00a0722957b54c44ecda5fe" +checksum = "a527e1414732f5bcad520b9febf29fd92ef4bba100588b4591cba8370ab6cbda" dependencies = [ "cfg-if", "log", @@ -2739,9 +2739,9 @@ dependencies = [ [[package]] name = "openvino-sys" -version = "0.9.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da7d035914ff5c8e12d7e05982929fb275e6f06eafcbe529f316001760b08786" +checksum = "637459f74d22a7bb772af9d3a5df61c88608d8daaa6fefe950849c7aabf891c3" dependencies = [ "env_logger 0.11.5", "libloading", diff --git a/crates/wasi-nn/Cargo.toml b/crates/wasi-nn/Cargo.toml index 17b397dc7c57..e787a5f00a45 100644 --- a/crates/wasi-nn/Cargo.toml +++ b/crates/wasi-nn/Cargo.toml @@ -36,7 +36,7 @@ ort = { version = "2.0.0-rc.10", default-features = false, features = [ tch = { version = "0.17.0", default-features = false, optional = true} [target.'cfg(target_pointer_width = "64")'.dependencies] -openvino = { version = "0.9.0", features = [ +openvino = { version = "0.11.0", features = [ "runtime-linking", ], optional = true } From 128e231b0f61169a33352e7977e4078276510f1b Mon Sep 17 00:00:00 2001 From: Rahul Date: Thu, 16 Jul 2026 14:38:19 -0700 Subject: [PATCH 2/3] prtest:full From 7edf7a81d09e6cb5231afbdcd6e70ac0eb9343db Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 17 Jul 2026 07:33:57 -0700 Subject: [PATCH 3/3] Add vets --- supply-chain/audits.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/supply-chain/audits.toml b/supply-chain/audits.toml index 262c0b9a512e..f4f513c85737 100644 --- a/supply-chain/audits.toml +++ b/supply-chain/audits.toml @@ -4159,6 +4159,12 @@ who = "Andrew Brown " criteria = "safe-to-deploy" delta = "0.8.0 -> 0.9.0" +[[audits.openvino]] +who = "Alex Crichton " +criteria = "safe-to-deploy" +delta = "0.9.0 -> 0.11.0" +notes = "Unsafe bindings, but comes with the territory. Nothing awry." + [[audits.openvino-finder]] who = "Matthew Tamayo-Rios " criteria = "safe-to-deploy" @@ -4193,6 +4199,12 @@ who = "Andrew Brown " criteria = "safe-to-deploy" delta = "0.8.0 -> 0.9.0" +[[audits.openvino-finder]] +who = "Alex Crichton " +criteria = "safe-to-deploy" +delta = "0.9.0 -> 0.11.0" +notes = "Just some paths changing here, nothing major" + [[audits.openvino-sys]] who = "Matthew Tamayo-Rios " criteria = "safe-to-deploy" @@ -4227,6 +4239,12 @@ who = "Andrew Brown " criteria = "safe-to-deploy" delta = "0.8.0 -> 0.9.0" +[[audits.openvino-sys]] +who = "Alex Crichton " +criteria = "safe-to-deploy" +delta = "0.9.0 -> 0.11.0" +notes = "Nothing unexpected for a sys crate update" + [[audits.ort]] who = "Andrew Brown " criteria = "safe-to-deploy"