-
Notifications
You must be signed in to change notification settings - Fork 123
/
deny.toml
36 lines (33 loc) · 1.05 KB
/
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
35
36
exclude = ["wayland-tests"]
[advisories]
vulnerability = "deny"
unmaintained = "deny"
notice = "deny"
[bans]
# nix lags nehind on memoffset
#multiple-versions = "deny"
deny = [
]
skip = [
]
[licenses]
unlicensed = "deny"
allow-osi-fsf-free = "neither"
copyleft = "deny"
confidence-threshold = 0.93 # We want really high confidence when inferring licenses from text
allow = [
"Apache-2.0",
"MIT",
"ISC",
"BSD-3-Clause",
"Zlib",
# Used in unicode-ident, which is used by syn and proc-macro2.
#
# Do watch https://github.com/rust-lang/rust/issues/98116 for future progress on this
#
# Unicode describes it as a "permissive MIT type of license": https://www.unicode.org/faq/unicode_license.html
# Fedora believes it is a free license: https://fedoraproject.org/wiki/Licensing/Unicode
# Google categorizes the license under "notice" which means it can be used (with some exceptions like
# notices or advertising clauses): https://opensource.google/documentation/reference/thirdparty/licenses#notice
"Unicode-DFS-2016",
]