From 417df0647ecdc9b54eeba374dc9091b5119474a0 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sun, 26 Jun 2022 22:12:58 +0200 Subject: [PATCH] only check x86_64 in cargo deny --- deny.toml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/deny.toml b/deny.toml index fad75c3..42d0919 100644 --- a/deny.toml +++ b/deny.toml @@ -18,13 +18,7 @@ # dependencies not shared by any other crates, would be ignored, as the target # list here is effectively saying which targets you are building for. targets = [ - # The triple can be any string, but only the target triples built in to - # rustc (as of 1.40) can be checked against actual config expressions - #{ triple = "x86_64-unknown-linux-musl" }, - # You can also specify which target_features you promise are enabled for a - # particular target. target_features are currently not validated against - # the actual valid features supported by the target architecture. - #{ triple = "wasm32-unknown-unknown", features = ["atomics"] }, + { triple = "x86_64-unknown-linux-musl" }, ] # This section is considered when running `cargo deny check advisories`