From eea1f5b7006c6182e4057c4e7f041d7d567baada Mon Sep 17 00:00:00 2001 From: Michael Ripley Date: Sat, 29 Jun 2024 17:15:07 -0500 Subject: [PATCH] Fix deny.toml --- deny.toml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/deny.toml b/deny.toml index 12e6e51..22d7935 100644 --- a/deny.toml +++ b/deny.toml @@ -89,7 +89,13 @@ ignore = [ # See https://spdx.org/licenses/ for list of possible licenses # [possible values: any SPDX 3.11 short identifier (+ optional exception)]. allow = [ - "GPL-3.0" + # Bog standard stuff + "Apache-2.0", + "GPL-3.0", + "MIT", + # Weirder stuff + "MPL-2.0", # OSI and FSF approved. Needed by option-ext + "Unicode-DFS-2016", # OSI but not FSF approved. Needed by unicode-ident. ] # The confidence threshold for detecting a license from license text. # The higher the value, the more closely the license text must be to the @@ -222,11 +228,13 @@ unknown-git = "deny" # if not specified. If it is specified but empty, no registries are allowed. allow-registry = ["https://github.com/rust-lang/crates.io-index"] # List of URLs for allowed Git repositories -allow-git = [] +allow-git = [ + "https://github.com/zkxs/file-rotate.git" +] [sources.allow-org] # 1 or more github.com organizations to allow git sources for -#github = [""] +#github = ["zkxs"] # 1 or more gitlab.com organizations to allow git sources for #gitlab = [""] # 1 or more bitbucket.org organizations to allow git sources for