From 41eed5b7b399242613735663424717daef873f47 Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Fri, 9 Jan 2026 06:58:21 +0100 Subject: [PATCH] ignore "unmaintained" warning for bincode, it's used by syntect --- .cargo/audit.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 70c36bb02..984b0699c 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -16,6 +16,9 @@ ignore = [ "RUSTSEC-2025-0134", # rustls-pemfile is unmaintained # https://github.com/rust-lang/docs.rs/issues/3070 + + "RUSTSEC-2025-0141", # Bincode is unmaintained + # https://github.com/rust-lang/docs.rs/issues/3122 ] informational_warnings = ["unmaintained"] # warn for categories of informational advisories severity_threshold = "low" # CVSS severity ("none", "low", "medium", "high", "critical")