From b1439be66714e8e421fecb225464379f27ccc1ec Mon Sep 17 00:00:00 2001 From: Tony <68118705+Legend-Master@users.noreply.github.com> Date: Mon, 13 Jul 2026 16:51:50 +0800 Subject: [PATCH] chore: ignore cargo audit errors (#3481) * chore: ignore cargo audit errors * Bump anyhow --- .cargo/audit.toml | 10 ++++++++++ Cargo.lock | 9 ++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index c7ae907cb..9316268d7 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -1,7 +1,17 @@ [advisories] ignore = [ + # rsa Marvin Attack + "RUSTSEC-2023-0071", # time crate can't be updated in the repo because of MSRV, users are unaffected "RUSTSEC-2026-0009", # libflate crates can't be updated in the repo because of MSRV, users are unaffected "RUSTSEC-2026-0105", + # quick-xml, need an update in plist, can't be updated in the repo because of MSRV, users are unaffected + # Also needs on update in wayland-scanner > arboard > tauri-plugin-clipboard-manager + "RUSTSEC-2026-0194", + # quick-xml, need an update in plist, can't be updated in the repo because of MSRV, users are unaffected + # Also needs on update in wayland-scanner > arboard > tauri-plugin-clipboard-manager + "RUSTSEC-2026-0195", + # quinn-proto, can't be updated in the repo because of MSRV, users are unaffected + "RUSTSEC-2026-0185", ] diff --git a/Cargo.lock b/Cargo.lock index 86be4d023..c0c0d0745 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -201,9 +201,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.98" +version = "1.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" +checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3" [[package]] name = "api" @@ -7036,11 +7036,10 @@ dependencies = [ [[package]] name = "tauri-winrt-notification" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9" +checksum = "9ed071c670382e85fc2f48ae706492d8c338f4f89bf72520d32f8abfe880aade" dependencies = [ - "quick-xml 0.37.4", "thiserror 2.0.12", "windows 0.61.1", "windows-version",