-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
131 lines (128 loc) · 2.77 KB
/
Copy pathdeny.toml
File metadata and controls
131 lines (128 loc) · 2.77 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
# Workspace-level cargo-deny config: applies to all crates in the workspace.
# See https://embarkstudios.github.io/cargo-deny/
[advisories]
# pyo3-stub-gen still pulls rustpython-parser's unmaintained unic-* parser crates.
# Keep this scoped to the known transitive advisories so new unmaintained dependencies fail CI.
ignore = [
"RUSTSEC-2025-0075", # unic-char-range via rustpython-parser
"RUSTSEC-2025-0080", # unic-common via rustpython-parser
"RUSTSEC-2025-0081", # unic-char-property via rustpython-parser
"RUSTSEC-2025-0090", # unic-emoji-char via rustpython-parser
"RUSTSEC-2025-0098", # unic-ucd-version via rustpython-parser
"RUSTSEC-2025-0100", # unic-ucd-ident via rustpython-parser
]
[bans.workspace-dependencies]
duplicates = "deny"
include-path-dependencies = true
unused = "deny"
[licenses]
# 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",
]