From d9b512caec108f12797994aa99549dd8e25fc126 Mon Sep 17 00:00:00 2001 From: Edd Barrett Date: Mon, 2 Feb 2026 10:14:22 +0000 Subject: [PATCH] Ignore unmaintained bincode advisory for a month. --- audit.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/audit.py b/audit.py index 859bd25..094f5fd 100644 --- a/audit.py +++ b/audit.py @@ -51,6 +51,10 @@ # XXX the keys of this map should also contain the account that owns the repo, # in case different accounts contain a repo by the same name. SKIP_ADVISORIES = { + # used by grmtools and typed-index-collections. + # + # https://github.com/zheland/typed-index-collections/issues/10 + ("yk", "bincode", "RUSTSEC-2025-0141"): date(2026, 3, 2), } UNMATCHED_SKIP_ADVISORIES = set(SKIP_ADVISORIES.keys())