From 1c5a48aff145318560d5bbe9ec0f897fc5dd5208 Mon Sep 17 00:00:00 2001 From: Flavio Castelli Date: Fri, 1 Mar 2024 09:28:38 +0100 Subject: [PATCH] Address cargo audit warning Ignoring `RUSTSEC-2023-0081`, which is about `safemem` being unmaintained. This is a transitive dependency of syntect. This bug is tracked upstream inside of https://github.com/trishume/syntect/issues/521 Signed-off-by: Flavio Castelli --- .cargo/audit.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 6263bd6e..b2237805 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -11,4 +11,7 @@ ignore = [ "RUSTSEC-2023-0071", # "Classic" RSA timing sidechannel attack from non-constant-time implementation. # Okay for local use. # https://rustsec.org/advisories/RUSTSEC-2023-0071.html + "RUSTSEC-2023-0081", # This is about `safemem` being unmaintained. + # This is a transitive dependency of syntect. This bug is tracked upstream inside of + # https://github.com/trishume/syntect/issues/521 ]