From 638919f872db9d0ef20561976bcfc622da242821 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Wed, 8 Dec 2021 17:34:21 -0800 Subject: [PATCH] cargo-deny: Disable some checks that are redundant with cargo-audit. Avoid needing to configure overrides in multiple places. --- deny.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/deny.toml b/deny.toml index dcfb03439..ce929f94a 100644 --- a/deny.toml +++ b/deny.toml @@ -1,6 +1,8 @@ [advisories] -unmaintained = "deny" -yanked = "deny" +# cargo-audit handles these. In the case where we have to temporarily allow +# some unmaintained/yanked crates, we'll do that in .cargo/audit.toml. +unmaintained = "allow" +yanked = "allow" notice = "deny" [licenses]