From 6f38131193a3d60b04900c2980ec45405247d0d7 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Sun, 10 Nov 2024 21:42:01 -0800 Subject: [PATCH] cargo-deny: temporarily allow `chrono-english` crate https://rustsec.org/advisories/RUSTSEC-2024-0395 recommends migrating off od `chrono-english`, but that doesn't seem easy. I've spent a few hours on it already. --- deny.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/deny.toml b/deny.toml index fca869e27e..890f1db5fa 100644 --- a/deny.toml +++ b/deny.toml @@ -74,6 +74,7 @@ ignore = [ #{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" }, #"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish #{ crate = "a-crate-that-is-yanked@0.1.1", reason = "you can specify why you are ignoring the yanked crate" }, + { id = "RUSTSEC-2024-0395", reason = "temporary, to unblock PRs" }, ] # If this is true, then cargo deny will use the git executable to fetch advisory database. # If this is false, then it uses a built-in git library.