-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
42 lines (42 loc) · 992 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
35
36
37
38
39
40
41
42
[licenses]
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"Zlib",
"ISC",
"Unicode-3.0",
]
confidence-threshold = 0.8
# Allow 1 or more licenses on a per-crate basis, so that particular licenses
# aren't accepted for every possible crate as with the normal allow list
exceptions = [
{ allow = [
"OpenSSL",
], name = "ring" },
{ allow = [
"BSD-3-Clause",
], crate = "matchit" },
{ allow = [
"BSD-3-Clause",
], crate = "subtle" },
{ allow = [
"MPL-2.0",
], crate = "webpki-roots" },
{ allow = [
"CC0-1.0",
], crate = "tiny-keccak" },
{ allow = [
"BSL-1.0",
], crate = "error-code" },
{ allow = [
"BSL-1.0",
], crate = "clipboard-win" },
{ allow = [
"BSD-2-Clause",
], crate = "Inflector" },
]
[[licenses.clarify]]
name = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]