From 2d4b9938f0161077490aacbaac04e2f50740ed57 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Mon, 26 May 2025 14:08:30 +0900 Subject: [PATCH] ci/deny: add rustix Will take a while to move to 1.0 for everyone. --- deny.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/deny.toml b/deny.toml index 337413f3..ccb71e07 100644 --- a/deny.toml +++ b/deny.toml @@ -38,8 +38,12 @@ private = { ignore = true } [bans] multiple-versions = "deny" -skip = [{ 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 +skip = [ + { crate = "bitflags@1", reason = "the ecosystem is in the process of migrating" }, + { crate = "rustix@0.38", reason = "the ecosystem is in the process of migrating" }, + { crate = "linux-raw-sys@0.4", reason = "the ecosystem is in the process of migrating" }, +] +wildcards = "allow" # at least until https://github.com/EmbarkStudios/cargo-deny/issues/241 is fixed [bans.build] include-archives = true