-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdeny.toml
More file actions
45 lines (37 loc) · 756 Bytes
/
deny.toml
File metadata and controls
45 lines (37 loc) · 756 Bytes
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
#[advisories]
#vulnerability = "deny"
#unmaintained = "deny"
#notice = "deny"
#unsound = "deny"
# [bans]
# multiple-versions = "deny"
[sources]
unknown-registry = "deny"
unknown-git = "deny"
[sources.allow-org]
github = ["narrowlink"]
[licenses]
# allow-osi-fsf-free = "both"
# copyleft = "deny"
confidence-threshold = 0.93
allow = [
"MPL-2.0",
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"BSD-2-Clause",
"ISC",
"WTFPL",
"Unicode-3.0"
]
exceptions = [
{ allow = ["AGPL-3.0"], crate = "narrowlink-gateway" },
{ allow = ["ISC", "MIT", "OpenSSL"], name = "ring" }
]
[[licenses.clarify]]
name = "ring"
version = "*"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 }
]