Skip to content

Commit

Permalink
Fix deny.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
zkxs committed Jun 29, 2024
1 parent 31fc0df commit eea1f5b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit eea1f5b

Please sign in to comment.