forked from bottlerocket-os/bottlerocket-settings-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
43 lines (37 loc) · 859 Bytes
/
deny.toml
File metadata and controls
43 lines (37 loc) · 859 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
[licenses]
version = 2
# We want really high confidence when inferring licenses from text
confidence-threshold = 0.93
# Commented license types are allowed but not currently used
allow = [
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
# "CC0-1.0",
"ISC",
"MIT",
# "OpenSSL",
# "Unlicense",
"Unicode-3.0",
"Zlib",
]
exceptions = [
{ name = "generational-arena", allow = ["MPL-2.0"] },
{ name = "unicode-ident", version = "1.0.13", allow = [
"MIT",
"Apache-2.0",
"Unicode-DFS-2016",
] },
]
[bans]
# Deny multiple versions or wildcard dependencies.
wildcards = "deny"
skip = [
# abi_stable is using an older version of syn
{ name = "syn", version = "1" },
]
[bans.workspace-dependencies]
duplicates = "deny"
include-path-dependencies = true
unused = "deny"