From 9be43bf6930f8f6116d9138791c3e1fdd5a6159a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Sat, 13 Jan 2024 11:12:14 +0100 Subject: [PATCH 1/2] chore: Deny unknown crate registry and git repository sources --- deny.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deny.toml b/deny.toml index 80fc1ca410f50..fe237c5348722 100644 --- a/deny.toml +++ b/deny.toml @@ -62,10 +62,10 @@ deny = [{ name = "tracy-client", deny-multiple-versions = true }] [sources] # Lint level for what to happen when a crate from a crate registry that is not # in the allow list is encountered -unknown-registry = "warn" +unknown-registry = "deny" # Lint level for what to happen when a crate from a git repository that is not # in the allow list is encountered -unknown-git = "warn" +unknown-git = "deny" [sources.allow-org] # github.com organizations to allow git sources for From c871ab3056a0712400f2d78ffb372a2973a110c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Sat, 13 Jan 2024 11:12:54 +0100 Subject: [PATCH 2/2] chore: Disallow "kyren" as GitHub organization for crate sources Since we have switched to the published gc-arena 0.5.0 release. --- deny.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/deny.toml b/deny.toml index fe237c5348722..6a2716edc3368 100644 --- a/deny.toml +++ b/deny.toml @@ -71,6 +71,5 @@ unknown-git = "deny" # github.com organizations to allow git sources for github = [ "ruffle-rs", - "kyren", "gfx-rs", ]