-
Notifications
You must be signed in to change notification settings - Fork 640
Expand file tree
/
Copy pathdeny.toml
More file actions
140 lines (136 loc) · 2.87 KB
/
deny.toml
File metadata and controls
140 lines (136 loc) · 2.87 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# Workspace-level cargo-deny config: applies to all crates in the workspace.
# See https://embarkstudios.github.io/cargo-deny/
[advisories]
ignore = [
# pyo3-stub-gen currently depends on rustpython-parser 0.4, which still pulls
# the unmaintained rust-unic crates used only for Python stub generation.
"RUSTSEC-2025-0075",
"RUSTSEC-2025-0080",
"RUSTSEC-2025-0081",
"RUSTSEC-2025-0090",
"RUSTSEC-2025-0098",
"RUSTSEC-2025-0100",
]
[bans]
multiple-versions = "warn"
wildcards = "deny"
deny = []
[licenses]
# Keep this allowlist broad on purpose. It represents the IBM-approved license
# set plus ContextForge-specific extensions, not just the subset currently
# present in the dependency graph. Do not shorten it opportunistically when
# editing unrelated Rust dependency policy.
# Listed licenses are allowed even if not encountered in the dependency tree.
unused-allowed-license = "allow"
confidence-threshold = 0.95
allow = [
"0BSD",
"AFL-1.1",
"AFL-1.2",
"AFL-2.0",
"AFL-2.1",
"AFL-3.0",
"Adobe-2006",
"ANTLR-PD",
"Apache-1.0",
"Apache-1.1",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"Artistic-1.0",
"Artistic-1.0-Perl",
"Artistic-1.0-cl8",
"Artistic-2.0",
"Beerware",
"BlueOak-1.0.0",
"BSL-1.0",
"BSD-1-Clause",
"BSD-2-Clause",
"BSD-2-Clause-FreeBSD",
"BSD-2-Clause-NetBSD",
"BSD-2-Clause-Patent",
"BSD-2-Clause-Views",
"BSD-3-Clause",
"BSD-3-Clause-Attribution",
"BSD-3-Clause-Clear",
"BSD-4-Clause",
"BSD-Protection",
"BSD-Source-Code",
"bzip2-1.0.6",
"CC-BY-1.0",
"CC-BY-2.0",
"CC-BY-2.5",
"CC-BY-2.5-AU",
"CC-BY-3.0",
"CC-BY-3.0-AT",
"CC-BY-3.0-DE",
"CC-BY-3.0-NL",
"CC-BY-3.0-US",
"CC-BY-4.0",
"CC0-1.0",
"CDDL-1.0",
"CDDL-1.1",
"ClArtistic",
"CPL-1.0",
"curl",
"ECL-2.0",
"eGenix",
"EPL-1.0",
"EPL-2.0",
"ErlPL-1.1",
"FSFAP",
"FTL",
"HPND",
"ICU",
"IJG",
"Info-ZIP",
"ISC",
"JSON",
"Libpng",
"MIT",
"MIT-0",
"MIT-Modern-Variant",
"MPL-1.0",
"MPL-1.1",
"MPL-2.0",
"MS-PL",
"Net-SNMP",
"OLDAP-1.4",
"OLDAP-2.8",
"OFL-1.0",
"OFL-1.1",
"OpenSSL",
"PHP-3.0",
"PHP-3.01",
"Plexus",
"PostgreSQL",
"PSF-2.0",
"Python-2.0",
"Python-2.0.1",
"RSA-MD",
"Ruby",
"SISSL",
"SISSL-1.2",
"TCL",
"Unicode-3.0",
"Unicode-DFS-2015",
"Unicode-DFS-2016",
"Unicode-TOU",
"Unlicense",
"UPL-1.0",
"W3C",
"W3C-19980720",
"W3C-20150513",
"X11",
"X11-distribute-modifications-variant",
"Xnet",
"Zend-2.0",
"Zlib",
"zlib-acknowledgement",
"ZPL-1.1",
"ZPL-2.0",
"ZPL-2.1",
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]