-
Notifications
You must be signed in to change notification settings - Fork 2
/
deny.toml
56 lines (56 loc) · 1.16 KB
/
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
47
48
49
50
51
52
53
54
55
56
[licenses]
copyleft = "allow"
allow-osi-fsf-free = "both"
# Explicitly allowing certain licenses is neccessary because SPDX incorrectly
# neglects to mark certain licenses as FSF/OSI approved when they really are.
# Also, allowing the CC0 because it is FSF-approved and GPL-compatible anyways,
# and the X11 bindings are actually Expat licensed! The Cargo.toml was just
# never updated...
allow = ["BSD-2-Clause", "CC0-1.0"]
# Denying common free-but-incompatible-with-the-GPL licenses.
deny = [
"AFL-1.1",
"AFL-1.2",
"AFL-2.0",
"AFL-2.1",
"AFL-3.0",
"AGPL-1.0",
"Apache-1.0",
"Apache-1.1",
"APSL-1.0",
"APSL-1.1",
"APSL-1.2",
"APSL-2.0",
"BSD-4-Clause",
"CDDL-1.0",
"CDDL-1.1",
"CPL-1.0",
"EPL-1.0",
"EPL-2.0",
"EUPL-1.0",
"EUPL-1.1",
"EUPL-1.2",
"IPL-1.0",
"LPPL-1.0",
"LPPL-1.1",
"LPPL-1.2",
"LPPL-1.3a",
"LPPL-1.3c",
"MS-PL",
"MS-RL",
"Nokia",
"OpenSSL",
"OSL-1.0",
"OSL-1.1",
"OSL-2.0",
"OSL-2.1",
"OSL-3.0",
"Python-2.0",
"QPL-1.0",
"SISSL",
"SISSL-1.2",
"Zend-2.0",
"ZPL-1.1",
"ZPL-2.0",
"ZPL-2.1",
]