From 67c6344cf832a9573c0035b7bb4e8fd6694102a3 Mon Sep 17 00:00:00 2001 From: Kevin Reid Date: Sat, 4 May 2024 18:54:05 -0700 Subject: [PATCH] Update `cargo-deny` configuration per v0.14.12. --- tools/deny.toml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tools/deny.toml b/tools/deny.toml index 419abf992..f526950fb 100644 --- a/tools/deny.toml +++ b/tools/deny.toml @@ -1,21 +1,22 @@ # Configuration file for . # Use this as `cargo deny --config tools/deny.toml`. +[graph] # This list of features excludes the "rerun" and "gltf" features # as they are only intended for testing (i.e. no binaries will be distributed # with them enabled). features = ["std", "arbitrary", "auto-threads", "save", "wgpu"] [licenses] -unlicensed = "deny" allow = [ "MIT", "Apache-2.0", + "BSD-3-Clause", + "ISC", + "Unicode-DFS-2016", + "Zlib", "CC0-1.0", ] -copyleft = "deny" -allow-osi-fsf-free = "osi" -default = "warn" private = { ignore = true } [bans] @@ -33,6 +34,7 @@ skip = [ { name = "web-time", version = "=0.2.4" }, { name = "syn", version = "1" }, { name = "redox_syscall", version = "=0.3.5" }, + { name = "libloading" }, { name = "libredox", version = "=0.0.1" }, { name = "miniz_oxide", version = "0.4.4" }, # old used by png-decoder ]