From a0946c54efebc43ba16b13f355ad527add010471 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E8=8F=9C=E4=B8=80=E7=A2=9F?= <1904791939@qq.com> Date: Sun, 28 Jun 2026 15:04:17 +0800 Subject: [PATCH 1/2] fix(deps): bump quinn-proto to 0.11.15 for RUSTSEC-2026-0185 Transitive via reqwest/quinn; resolves high-severity remote memory exhaustion advisory reported by cargo audit in CI. Co-authored-by: Cursor --- Cargo.lock | 4 ++-- skilllite/Cargo.lock | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f9f68b39..4f9b8f1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1782,9 +1782,9 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.14" +version = "0.11.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" +checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e" dependencies = [ "bytes", "getrandom 0.3.4", diff --git a/skilllite/Cargo.lock b/skilllite/Cargo.lock index 3e6ccb1b..d0587373 100644 --- a/skilllite/Cargo.lock +++ b/skilllite/Cargo.lock @@ -1262,9 +1262,9 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.13" +version = "0.11.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" +checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e" dependencies = [ "bytes", "getrandom 0.3.4", From 6c73881d3d0b6053368db8258449488bb7341db3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E8=8F=9C=E4=B8=80=E7=A2=9F?= <1904791939@qq.com> Date: Sun, 28 Jun 2026 15:17:09 +0800 Subject: [PATCH 2/2] style: cargo fmt macos_sandbox_smoke test imports Co-authored-by: Cursor --- crates/skilllite-sandbox/tests/macos_sandbox_smoke.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/skilllite-sandbox/tests/macos_sandbox_smoke.rs b/crates/skilllite-sandbox/tests/macos_sandbox_smoke.rs index cf789c96..27f1c4d4 100644 --- a/crates/skilllite-sandbox/tests/macos_sandbox_smoke.rs +++ b/crates/skilllite-sandbox/tests/macos_sandbox_smoke.rs @@ -7,8 +7,7 @@ #![cfg(target_os = "macos")] use skilllite_sandbox::runner::{ - run_in_sandbox_with_limits_and_level, ResourceLimits, RuntimePaths, SandboxConfig, - SandboxLevel, + run_in_sandbox_with_limits_and_level, ResourceLimits, RuntimePaths, SandboxConfig, SandboxLevel, }; use std::fs; use std::path::PathBuf;