From 66390fd56f490cb1610cef0525beef077e9e8c3e Mon Sep 17 00:00:00 2001 From: Jack Thomson Date: Thu, 13 Mar 2025 10:57:53 +0000 Subject: [PATCH] chore: Ignore paste unmaintained warning While gdbstub moves away from paste as a dependency we will ignore this warning. (cherry picked from commit e7f60511f761e4c622ee0609a71c7b76d3925b6c) Signed-off-by: Jack Thomson Signed-off-by: Riccardo Mancini --- .cargo/audit.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index b28486dffb9..6b623cb495c 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -1 +1,7 @@ [advisories] +# The `paste` dependency is transitively included via `gdbstub`. +# While the crate is archived/unmaintained, the author considers it feature-complete +# and functionally stable. gdbstub will be update once they migrate +# to an alternative solution. +# See https://github.com/daniel5151/gdbstub/issues/168 +ignore = ["RUSTSEC-2024-0436"]