-
Notifications
You must be signed in to change notification settings - Fork 27
/
deny.toml
46 lines (42 loc) · 950 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
43
44
45
46
[sources.allow-org]
github = [
"mintlayer", # allow any code from mintlayer's github
]
[licenses]
# we reject code without a license
confidence-threshold = 0.92
allow = [
"0BSD",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"CC0-1.0",
"ISC",
"LicenseRef-ring",
"LicenseRef-webpki",
"MIT",
"MPL-2.0",
"Unicode-DFS-2016",
"Unicode-3.0",
"Unlicense", # this is a specific license rather than no license at all
"Zlib",
] # deny a license not in this set of licenses
[[licenses.clarify]]
name = "ring"
expression = "LicenseRef-ring"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 },
]
[[licenses.clarify]]
name = "webpki"
expression = "LicenseRef-webpki"
license-files = [
{ path = "LICENSE", hash = 0x001c7e6c },
]
[advisories]
version = 2
db-path = "~/.cargo/advisory-dbs"
db-urls = [ "https://github.com/RustSec/advisory-db" ]
yanked = "warn"
ignore = []