From 8c6541fea941f040adfebfecad243f84345834d0 Mon Sep 17 00:00:00 2001 From: Conrad Ludgate Date: Tue, 22 Aug 2023 17:44:31 +0100 Subject: [PATCH] chore: add supported targets to deny (#5070) ## Problem many duplicate windows crates pollute the cargo deny output ## Summary of changes we don't build those crates, so remove those targets from being checked --- deny.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 71006b14cd..55c581ce3a 100644 --- a/deny.toml +++ b/deny.toml @@ -4,7 +4,12 @@ # to your expectations and requirements. # Root options -targets = [] +targets = [ + { triple = "x86_64-unknown-linux-gnu" }, + { triple = "aarch64-unknown-linux-gnu" }, + { triple = "aarch64-apple-darwin" }, + { triple = "x86_64-apple-darwin" }, +] all-features = false no-default-features = false feature-depth = 1