From c80cff0b6c8f9ee6568422ddfe03611ccae8978a Mon Sep 17 00:00:00 2001 From: Edd Barrett Date: Mon, 14 Oct 2024 10:22:16 +0100 Subject: [PATCH 1/3] Tell `cargo audit` where to audit in `yk-benchmarks`. --- audit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/audit.py b/audit.py index 908f974..dc9ea14 100644 --- a/audit.py +++ b/audit.py @@ -57,6 +57,7 @@ # for use with `os.path.join()`. CUSTOM_AUDIT_DIRS = { ("ykjit", "ykcbf"): ["lang_tests"], + ("ykjit", "yk-benchmarks"): ["reporter"], } From b6b0b22debf7fe068c462272ee0240d35f7d5483 Mon Sep 17 00:00:00 2001 From: Edd Barrett Date: Tue, 12 Nov 2024 15:35:55 +0000 Subject: [PATCH 2/3] Remove unmatched skip for atty. --- audit.py | 1 - 1 file changed, 1 deletion(-) diff --git a/audit.py b/audit.py index dc9ea14..7c61e78 100644 --- a/audit.py +++ b/audit.py @@ -47,7 +47,6 @@ # 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 = { - ("yk", "atty", "RUSTSEC-2021-0145"): date(2023, 6, 1), } UNMATCHED_SKIP_ADVISORIES = set(SKIP_ADVISORIES.keys()) From 3f215039cbfa13043772eb095f3529048429aea0 Mon Sep 17 00:00:00 2001 From: Edd Barrett Date: Tue, 12 Nov 2024 15:39:45 +0000 Subject: [PATCH 3/3] Skip rustgc_paper_experiment. --- audit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/audit.py b/audit.py index 7c61e78..b56e592 100644 --- a/audit.py +++ b/audit.py @@ -28,6 +28,7 @@ ("softdevteam", "ykrustc"), ("softdevteam", "rustgc"), ("softdevteam", "rustgc_paper"), + ("softdevteam", "rustgc_paper_experiment"), ("softdevteam", "alloy"), # ykllvm contains rust files and thus gets categorised as a rust repo. ("ykjit", "ykllvm"),