forked from qir-alliance/pyqir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
34 lines (30 loc) · 824 Bytes
/
deny.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[bans]
# Lint level for when multiple versions of the same crate are detected
multiple-versions = "warn"
# Lint level for when a crate version requirement is `*`
wildcards = "warn"
[advisories]
# The lint level for security vulnerabilities
vulnerability = "deny"
# The lint level for unmaintained crates
unmaintained = "warn"
[licenses]
unlicensed = "deny"
copyleft = "deny"
default = "deny"
confidence-threshold = 1.0
# List of explicitly allowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-3-Clause",
"MIT",
"Unicode-DFS-2016",
]
[sources.allow-org]
# github.com organizations to allow git sources for
github = [
"TheDan64",
]