24
24
# list here is effectively saying which targets you are building for.
25
25
targets = [
26
26
27
-
28
27
# The triple can be any string, but only the target triples built in to
29
28
# rustc (as of 1.40) can be checked against actual config expressions
30
29
# "x86_64-unknown-linux-musl",
@@ -73,7 +72,6 @@ feature-depth = 1
73
72
# output a note when they are encountered.
74
73
ignore = [
75
74
76
-
77
75
# "RUSTSEC-0000-0000",
78
76
# { id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
79
77
# "a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish
@@ -108,7 +106,6 @@ confidence-threshold = 0.8
108
106
# aren't accepted for every possible crate as with the normal allow list
109
107
exceptions = [
110
108
111
-
112
109
# Each entry is the crate and version constraint, and its specific allow
113
110
# list
114
111
# { allow = ["Zlib"], crate = "adler32" },
@@ -143,7 +140,6 @@ ignore = false
143
140
# not have its license(s) checked
144
141
registries = [
145
142
146
-
147
143
# "https://sekretz.com/registry
148
144
]
149
145
@@ -172,14 +168,12 @@ external-default-features = "allow"
172
168
# List of crates that are allowed. Use with care!
173
169
allow = [
174
170
175
-
176
171
# "ansi_term@0.11.0",
177
172
# { crate = "ansi_term@0.11.0", reason = "you can specify a reason it is allowed" },
178
173
]
179
174
# List of crates to deny
180
175
deny = [
181
176
182
-
183
177
# "ansi_term@0.11.0",
184
178
# { crate = "ansi_term@0.11.0", reason = "you can specify a reason it is banned" },
185
179
# Wrapper crates can optionally be specified to allow the crate when it
@@ -213,7 +207,6 @@ deny = [
213
207
# Certain crates/versions that will be skipped when doing duplicate detection.
214
208
skip = [
215
209
216
-
217
210
# "ansi_term@0.11.0",
218
211
# { crate = "ansi_term@0.11.0", reason = "you can specify a reason why it can't be updated/removed" },
219
212
]
@@ -223,7 +216,6 @@ skip = [
223
216
# by default infinite.
224
217
skip-tree = [
225
218
226
-
227
219
# "ansi_term@0.11.0", # will be skipped along with _all_ of its direct and transitive dependencies
228
220
# { crate = "ansi_term@0.11.0", depth = 20 },
229
221
]
0 commit comments