-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdeny.toml
More file actions
21 lines (19 loc) · 653 Bytes
/
deny.toml
File metadata and controls
21 lines (19 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[licenses]
# Only allow licenses compatible with AGPL
clarify = []
allow = [
"AGPL-3.0-only",
"GPL-3.0-only",
"LGPL-3.0-only",
"MIT", # MIT is compatible with AGPL
"Apache-2.0", # Apache 2.0 is compatible with AGPL
"BSD-3-Clause", # BSD-3-Clause is compatible with AGPL
"ISC", # ISC is compatible with AGPL
"CC0-1.0", # CC0 is compatible with AGPL
"Unicode-3.0", # Used by unicode-ident crate
]
# Ensure every crate has a valid license file
private = { ignore = true }
confidence-threshold = 0.8
# Don't warn about allowed licenses that aren't currently used
unused-allowed-license = "allow"