From cf829a44e728df7033f78071c19f8e7e4de65d21 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Thu, 21 Nov 2024 08:28:32 +0100 Subject: [PATCH] ci: fix cargo deny --- deny.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/deny.toml b/deny.toml index 4fcc44162..9ca214a98 100644 --- a/deny.toml +++ b/deny.toml @@ -25,12 +25,12 @@ targets = [ [licenses] allow = [ - "Apache-2.0", # https://tldrlegal.com/license/apache-license-2.0-(apache-2.0) - "BSD-2-Clause", # https://tldrlegal.com/license/bsd-2-clause-license-(freebsd) - "BSD-3-Clause", # https://tldrlegal.com/license/bsd-3-clause-license-(revised) - "ISC", # https://tldrlegal.com/license/-isc-license - "MIT", # https://tldrlegal.com/license/mit-license - "Unicode-DFS-2016", # https://spdx.org/licenses/Unicode-DFS-2016.html + "Apache-2.0", # https://tldrlegal.com/license/apache-license-2.0-(apache-2.0) + "BSD-2-Clause", # https://tldrlegal.com/license/bsd-2-clause-license-(freebsd) + "BSD-3-Clause", # https://tldrlegal.com/license/bsd-3-clause-license-(revised) + "ISC", # https://tldrlegal.com/license/isc-license + "MIT", # https://tldrlegal.com/license/mit-license + "Unicode-3.0", # https://spdx.org/licenses/Unicode-3.0.html ] confidence-threshold = 1.0 private = { ignore = true } @@ -38,8 +38,8 @@ private = { ignore = true } [bans] multiple-versions = "deny" skip = [ - { crate = "raw-window-handle", reason = "we depend on multiple behind features" } - { crate = "bitflags@1", reason = "the ecosystem is in the process of migrating" } + { crate = "raw-window-handle", reason = "we depend on multiple behind features" }, + { crate = "bitflags@1", reason = "the ecosystem is in the process of migrating" }, ] wildcards = "allow" # at least until https://github.com/EmbarkStudios/cargo-deny/issues/241 is fixed