]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/CHANGELOG.md
Rollup merge of #71645 - ecstatic-morse:readme-build-doc, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / CHANGELOG.md
1 # Change Log
2
3 All notable changes to this project will be documented in this file.
4 See [Changelog Update](doc/changelog_update.md) if you want to update this
5 document.
6
7 ## Unreleased / In Rust Nightly
8
9 [891e1a8...master](https://github.com/rust-lang/rust-clippy/compare/891e1a8...master)
10
11 ## Rust 1.44
12
13 Current beta, release 2020-06-04
14
15 [204bb9b...891e1a8](https://github.com/rust-lang/rust-clippy/compare/204bb9b...891e1a8)
16
17 ### New lints
18
19 * [`explicit_deref_methods`] [#5226](https://github.com/rust-lang/rust-clippy/pull/5226)
20 * [`implicit_saturating_sub`] [#5427](https://github.com/rust-lang/rust-clippy/pull/5427)
21 * [`macro_use_imports`] [#5230](https://github.com/rust-lang/rust-clippy/pull/5230)
22 * [`verbose_file_reads`] [#5272](https://github.com/rust-lang/rust-clippy/pull/5272)
23 * [`future_not_send`] [#5423](https://github.com/rust-lang/rust-clippy/pull/5423)
24 * [`redundant_pub_crate`] [#5319](https://github.com/rust-lang/rust-clippy/pull/5319)
25 * [`large_const_arrays`] [#5248](https://github.com/rust-lang/rust-clippy/pull/5248)
26 * [`result_map_or_into_option`] [#5415](https://github.com/rust-lang/rust-clippy/pull/5415)
27 * [`redundant_allocation`] [#5349](https://github.com/rust-lang/rust-clippy/pull/5349)
28 * [`fn_address_comparisons`] [#5294](https://github.com/rust-lang/rust-clippy/pull/5294)
29 * [`vtable_address_comparisons`] [#5294](https://github.com/rust-lang/rust-clippy/pull/5294)
30
31
32 ### Moves and Deprecations
33
34 * Deprecate [`replace_consts`] lint [#5380](https://github.com/rust-lang/rust-clippy/pull/5380)
35 * Move [`cognitive_complexity`] to nursery [#5428](https://github.com/rust-lang/rust-clippy/pull/5428)
36 * Move [`useless_transmute`] to nursery [#5364](https://github.com/rust-lang/rust-clippy/pull/5364)
37 * Downgrade [`inefficient_to_string`] to pedantic [#5412](https://github.com/rust-lang/rust-clippy/pull/5412)
38 * Downgrade [`option_option`] to pedantic [#5401](https://github.com/rust-lang/rust-clippy/pull/5401)
39 * Downgrade [`unreadable_literal`] to pedantic [#5419](https://github.com/rust-lang/rust-clippy/pull/5419)
40 * Downgrade [`let_unit_value`] to pedantic [#5409](https://github.com/rust-lang/rust-clippy/pull/5409)
41 * Downgrade [`trivially_copy_pass_by_ref`] to pedantic [#5410](https://github.com/rust-lang/rust-clippy/pull/5410)
42 * Downgrade [`implicit_hasher`] to pedantic [#5411](https://github.com/rust-lang/rust-clippy/pull/5411)
43
44 ### Enhancements
45
46 * On _nightly_ you can now use `cargo clippy --fix -Z unstable-options` to
47   auto-fix lints that support this [#5363](https://github.com/rust-lang/rust-clippy/pull/5363)
48 * Make [`redundant_clone`] also trigger on cases where the cloned value is not
49   consumed. [#5304](https://github.com/rust-lang/rust-clippy/pull/5304)
50 * Expand [`integer_arithmetic`] to also disallow bit-shifting [#5430](https://github.com/rust-lang/rust-clippy/pull/5430)
51 * [`option_as_ref_deref`] now detects more deref cases [#5425](https://github.com/rust-lang/rust-clippy/pull/5425)
52 * [`large_enum_variant`] now report the sizes of the largest and second-largest variants [#5466](https://github.com/rust-lang/rust-clippy/pull/5466)
53 * [`bool_comparison`] now also checks for inequality comparisons that can be
54   written more concisely [#5365](https://github.com/rust-lang/rust-clippy/pull/5365)
55 * Expand [`clone_on_copy`] to work in method call arguments as well [#5441](https://github.com/rust-lang/rust-clippy/pull/5441)
56 * [`redundant_pattern_matching`] now also handles `while let` [#5483](https://github.com/rust-lang/rust-clippy/pull/5483)
57 * [`integer_arithmetic`] now also lints references of integers [#5329](https://github.com/rust-lang/rust-clippy/pull/5329)
58 * Expand [`float_cmp_const`] to also work on arrays [#5345](https://github.com/rust-lang/rust-clippy/pull/5345)
59 * Trigger [`map_flatten`] when map is called on an `Option` [#5473](https://github.com/rust-lang/rust-clippy/pull/5473)
60
61 ### False Positive Fixes
62
63 * [`many_single_char_names`] [#5468](https://github.com/rust-lang/rust-clippy/pull/5468)
64 * [`should_implement_trait`] [#5437](https://github.com/rust-lang/rust-clippy/pull/5437)
65 * [`unused_self`] [#5387](https://github.com/rust-lang/rust-clippy/pull/5387)
66 * [`redundant_clone`] [#5453](https://github.com/rust-lang/rust-clippy/pull/5453)
67 * [`precedence`] [#5445](https://github.com/rust-lang/rust-clippy/pull/5445)
68 * [`suspicious_op_assign_impl`] [#5424](https://github.com/rust-lang/rust-clippy/pull/5424)
69 * [`needless_lifetimes`] [#5293](https://github.com/rust-lang/rust-clippy/pull/5293)
70 * [`redundant_pattern`] [#5287](https://github.com/rust-lang/rust-clippy/pull/5287)
71 * [`inconsistent_digit_grouping`] [#5451](https://github.com/rust-lang/rust-clippy/pull/5451)
72
73
74 ### Suggestion Improvements
75
76 * Improved [`question_mark`] lint suggestion so that it doesn't add redundant `as_ref()` [#5481](https://github.com/rust-lang/rust-clippy/pull/5481)
77 * Improve the suggested placeholder in [`option_map_unit_fn`] [#5292](https://github.com/rust-lang/rust-clippy/pull/5292)
78 * Improve suggestion for [`match_single_binding`] when triggered inside a closure [#5350](https://github.com/rust-lang/rust-clippy/pull/5350)
79
80 ### ICE Fixes
81
82 * Handle the unstable `trivial_bounds` feature [#5296](https://github.com/rust-lang/rust-clippy/pull/5296)
83 * `shadow_*` lints [#5297](https://github.com/rust-lang/rust-clippy/pull/5297)
84
85 ### Documentation
86
87 * Fix documentation generation for configurable lints [#5353](https://github.com/rust-lang/rust-clippy/pull/5353)
88 * Update documentation for [`new_ret_no_self`] [#5448](https://github.com/rust-lang/rust-clippy/pull/5448)
89 * The documentation for [`option_option`] now suggest using a tri-state enum [#5403](https://github.com/rust-lang/rust-clippy/pull/5403)
90 * Fix bit mask example in [`verbose_bit_mask`] documentation [#5454](https://github.com/rust-lang/rust-clippy/pull/5454)
91 * [`wildcard_imports`] documentation now mentions that `use ...::prelude::*` is
92   not linted [#5312](https://github.com/rust-lang/rust-clippy/pull/5312)
93
94 ## Rust 1.43
95
96 Current stable, released 2020-04-23
97
98 [4ee1206...204bb9b](https://github.com/rust-lang/rust-clippy/compare/4ee1206...204bb9b)
99
100 ### New lints
101
102 * [`imprecise_flops`] [#4897](https://github.com/rust-lang/rust-clippy/pull/4897)
103 * [`suboptimal_flops`] [#4897](https://github.com/rust-lang/rust-clippy/pull/4897)
104 * [`wildcard_imports`] [#5029](https://github.com/rust-lang/rust-clippy/pull/5029)
105 * [`single_component_path_imports`] [#5058](https://github.com/rust-lang/rust-clippy/pull/5058)
106 * [`match_single_binding`] [#5061](https://github.com/rust-lang/rust-clippy/pull/5061)
107 * [`let_underscore_lock`] [#5101](https://github.com/rust-lang/rust-clippy/pull/5101)
108 * [`struct_excessive_bools`] [#5125](https://github.com/rust-lang/rust-clippy/pull/5125)
109 * [`fn_params_excessive_bools`] [#5125](https://github.com/rust-lang/rust-clippy/pull/5125)
110 * [`option_env_unwrap`] [#5148](https://github.com/rust-lang/rust-clippy/pull/5148)
111 * [`lossy_float_literal`] [#5202](https://github.com/rust-lang/rust-clippy/pull/5202)
112 * [`rest_pat_in_fully_bound_structs`] [#5258](https://github.com/rust-lang/rust-clippy/pull/5258)
113
114 ### Moves and Deprecations
115
116 * Move [`unneeded_field_pattern`] to pedantic group [#5200](https://github.com/rust-lang/rust-clippy/pull/5200)
117
118 ### Enhancements
119
120 * Make [`missing_errors_doc`] lint also trigger on `async` functions
121   [#5181](https://github.com/rust-lang/rust-clippy/pull/5181)
122 * Add more constants to [`approx_constant`] [#5193](https://github.com/rust-lang/rust-clippy/pull/5193)
123 * Extend [`question_mark`] lint [#5266](https://github.com/rust-lang/rust-clippy/pull/5266)
124
125 ### False Positive Fixes
126
127 * [`use_debug`] [#5047](https://github.com/rust-lang/rust-clippy/pull/5047)
128 * [`unnecessary_unwrap`] [#5132](https://github.com/rust-lang/rust-clippy/pull/5132)
129 * [`zero_prefixed_literal`] [#5170](https://github.com/rust-lang/rust-clippy/pull/5170)
130 * [`missing_const_for_fn`] [#5216](https://github.com/rust-lang/rust-clippy/pull/5216)
131
132 ### Suggestion Improvements
133
134 * Improve suggestion when blocks of code are suggested [#5134](https://github.com/rust-lang/rust-clippy/pull/5134)
135
136 ### ICE Fixes
137
138 * `misc_early` lints [#5129](https://github.com/rust-lang/rust-clippy/pull/5129)
139 * [`missing_errors_doc`] [#5213](https://github.com/rust-lang/rust-clippy/pull/5213)
140 * Fix ICE when evaluating `usize`s [#5256](https://github.com/rust-lang/rust-clippy/pull/5256)
141
142 ### Documentation
143
144 * Improve documentation of [`iter_nth_zero`]
145 * Add documentation pages for stable releases [#5171](https://github.com/rust-lang/rust-clippy/pull/5171)
146
147 ### Others
148
149 * Clippy now completely runs on GitHub Actions [#5190](https://github.com/rust-lang/rust-clippy/pull/5190)
150
151
152 ## Rust 1.42
153
154 Released 2020-03-12
155
156 [69f99e7...4ee1206](https://github.com/rust-lang/rust-clippy/compare/69f99e7...4ee1206)
157
158 ### New lints
159
160 * [`filetype_is_file`] [#4543](https://github.com/rust-lang/rust-clippy/pull/4543)
161 * [`let_underscore_must_use`] [#4823](https://github.com/rust-lang/rust-clippy/pull/4823)
162 * [`modulo_arithmetic`] [#4867](https://github.com/rust-lang/rust-clippy/pull/4867)
163 * [`mem_replace_with_default`] [#4881](https://github.com/rust-lang/rust-clippy/pull/4881)
164 * [`mutable_key_type`] [#4885](https://github.com/rust-lang/rust-clippy/pull/4885)
165 * [`option_as_ref_deref`] [#4945](https://github.com/rust-lang/rust-clippy/pull/4945)
166 * [`wildcard_in_or_patterns`] [#4960](https://github.com/rust-lang/rust-clippy/pull/4960)
167 * [`iter_nth_zero`] [#4966](https://github.com/rust-lang/rust-clippy/pull/4966)
168 * [`invalid_atomic_ordering`] [#4999](https://github.com/rust-lang/rust-clippy/pull/4999)
169 * [`skip_while_next`] [#5067](https://github.com/rust-lang/rust-clippy/pull/5067)
170
171 ### Moves and Deprecations
172
173 * Move [`transmute_float_to_int`] from nursery to complexity group
174   [#5015](https://github.com/rust-lang/rust-clippy/pull/5015)
175 * Move [`range_plus_one`] to pedantic group [#5057](https://github.com/rust-lang/rust-clippy/pull/5057)
176 * Move [`debug_assert_with_mut_call`] to nursery group [#5106](https://github.com/rust-lang/rust-clippy/pull/5106)
177 * Deprecate [`unused_label`] [#4930](https://github.com/rust-lang/rust-clippy/pull/4930)
178
179 ### Enhancements
180
181 * Lint vectored IO in [`unused_io_amount`] [#5027](https://github.com/rust-lang/rust-clippy/pull/5027)
182 * Make [`vec_box`] configurable by adding a size threshold [#5081](https://github.com/rust-lang/rust-clippy/pull/5081)
183 * Also lint constants in [`cmp_nan`] [#4910](https://github.com/rust-lang/rust-clippy/pull/4910)
184 * Fix false negative in [`expect_fun_call`] [#4915](https://github.com/rust-lang/rust-clippy/pull/4915)
185 * Fix false negative in [`redundant_clone`] [#5017](https://github.com/rust-lang/rust-clippy/pull/5017)
186
187 ### False Positive Fixes
188
189 * [`map_clone`] [#4937](https://github.com/rust-lang/rust-clippy/pull/4937)
190 * [`replace_consts`] [#4977](https://github.com/rust-lang/rust-clippy/pull/4977)
191 * [`let_and_return`] [#5008](https://github.com/rust-lang/rust-clippy/pull/5008)
192 * [`eq_op`] [#5079](https://github.com/rust-lang/rust-clippy/pull/5079)
193 * [`possible_missing_comma`] [#5083](https://github.com/rust-lang/rust-clippy/pull/5083)
194 * [`debug_assert_with_mut_call`] [#5106](https://github.com/rust-lang/rust-clippy/pull/5106)
195 * Don't trigger [`let_underscore_must_use`] in external macros
196   [#5082](https://github.com/rust-lang/rust-clippy/pull/5082)
197 * Don't trigger [`empty_loop`] in `no_std` crates [#5086](https://github.com/rust-lang/rust-clippy/pull/5086)
198
199 ### Suggestion Improvements
200
201 * [`option_map_unwrap_or`] [#4634](https://github.com/rust-lang/rust-clippy/pull/4634)
202 * [`wildcard_enum_match_arm`] [#4934](https://github.com/rust-lang/rust-clippy/pull/4934)
203 * [`cognitive_complexity`] [#4935](https://github.com/rust-lang/rust-clippy/pull/4935)
204 * [`decimal_literal_representation`] [#4956](https://github.com/rust-lang/rust-clippy/pull/4956)
205 * [`unknown_clippy_lints`] [#4963](https://github.com/rust-lang/rust-clippy/pull/4963)
206 * [`explicit_into_iter_loop`] [#4978](https://github.com/rust-lang/rust-clippy/pull/4978)
207 * [`useless_attribute`] [#5022](https://github.com/rust-lang/rust-clippy/pull/5022)
208 * [`if_let_some_result`] [#5032](https://github.com/rust-lang/rust-clippy/pull/5032)
209
210 ### ICE fixes
211
212 * [`unsound_collection_transmute`] [#4975](https://github.com/rust-lang/rust-clippy/pull/4975)
213
214 ### Documentation
215
216 * Improve documentation of [`empty_enum`], [`replace_consts`], [`redundant_clone`], and [`iterator_step_by_zero`]
217
218
219 ## Rust 1.41
220
221 Released 2020-01-30
222
223 [c8e3cfb...69f99e7](https://github.com/rust-lang/rust-clippy/compare/c8e3cfb...69f99e7)
224
225 * New Lints:
226   * [`exit`] [#4697](https://github.com/rust-lang/rust-clippy/pull/4697)
227   * [`to_digit_is_some`] [#4801](https://github.com/rust-lang/rust-clippy/pull/4801)
228   * [`tabs_in_doc_comments`] [#4806](https://github.com/rust-lang/rust-clippy/pull/4806)
229   * [`large_stack_arrays`] [#4807](https://github.com/rust-lang/rust-clippy/pull/4807)
230   * [`same_functions_in_if_condition`] [#4814](https://github.com/rust-lang/rust-clippy/pull/4814)
231   * [`zst_offset`] [#4816](https://github.com/rust-lang/rust-clippy/pull/4816)
232   * [`as_conversions`] [#4821](https://github.com/rust-lang/rust-clippy/pull/4821)
233   * [`missing_errors_doc`] [#4884](https://github.com/rust-lang/rust-clippy/pull/4884)
234   * [`transmute_float_to_int`] [#4889](https://github.com/rust-lang/rust-clippy/pull/4889)
235 * Remove plugin interface, see
236   [Inside Rust Blog](https://blog.rust-lang.org/inside-rust/2019/11/04/Clippy-removes-plugin-interface.html) for
237   details [#4714](https://github.com/rust-lang/rust-clippy/pull/4714)
238 * Move [`use_self`] to nursery group [#4863](https://github.com/rust-lang/rust-clippy/pull/4863)
239 * Deprecate [`into_iter_on_array`] [#4788](https://github.com/rust-lang/rust-clippy/pull/4788)
240 * Expand [`string_lit_as_bytes`] to also trigger when literal has escapes
241   [#4808](https://github.com/rust-lang/rust-clippy/pull/4808)
242 * Fix false positive in `comparison_chain` [#4842](https://github.com/rust-lang/rust-clippy/pull/4842)
243 * Fix false positive in `while_immutable_condition` [#4730](https://github.com/rust-lang/rust-clippy/pull/4730)
244 * Fix false positive in `explicit_counter_loop` [#4803](https://github.com/rust-lang/rust-clippy/pull/4803)
245 * Fix false positive in `must_use_candidate` [#4794](https://github.com/rust-lang/rust-clippy/pull/4794)
246 * Fix false positive in `print_with_newline` and `write_with_newline`
247   [#4769](https://github.com/rust-lang/rust-clippy/pull/4769)
248 * Fix false positive in `derive_hash_xor_eq` [#4766](https://github.com/rust-lang/rust-clippy/pull/4766)
249 * Fix false positive in `missing_inline_in_public_items` [#4870](https://github.com/rust-lang/rust-clippy/pull/4870)
250 * Fix false positive in `string_add` [#4880](https://github.com/rust-lang/rust-clippy/pull/4880)
251 * Fix false positive in `float_arithmetic` [#4851](https://github.com/rust-lang/rust-clippy/pull/4851)
252 * Fix false positive in `cast_sign_loss` [#4883](https://github.com/rust-lang/rust-clippy/pull/4883)
253 * Fix false positive in `manual_swap` [#4877](https://github.com/rust-lang/rust-clippy/pull/4877)
254 * Fix ICEs occurring while checking some block expressions [#4772](https://github.com/rust-lang/rust-clippy/pull/4772)
255 * Fix ICE in `use_self` [#4776](https://github.com/rust-lang/rust-clippy/pull/4776)
256 * Fix ICEs related to `const_generics` [#4780](https://github.com/rust-lang/rust-clippy/pull/4780)
257 * Display help when running `clippy-driver` without arguments, instead of ICEing
258   [#4810](https://github.com/rust-lang/rust-clippy/pull/4810)
259 * Clippy has its own ICE message now [#4588](https://github.com/rust-lang/rust-clippy/pull/4588)
260 * Show deprecated lints in the documentation again [#4757](https://github.com/rust-lang/rust-clippy/pull/4757)
261 * Improve Documentation by adding positive examples to some lints
262   [#4832](https://github.com/rust-lang/rust-clippy/pull/4832)
263
264 ## Rust 1.40
265
266 Released 2019-12-19
267
268 [4e7e71b...c8e3cfb](https://github.com/rust-lang/rust-clippy/compare/4e7e71b...c8e3cfb)
269
270 * New Lints:
271   * [`unneeded_wildcard_pattern`] [#4537](https://github.com/rust-lang/rust-clippy/pull/4537)
272   * [`needless_doctest_main`] [#4603](https://github.com/rust-lang/rust-clippy/pull/4603)
273   * [`suspicious_unary_op_formatting`] [#4615](https://github.com/rust-lang/rust-clippy/pull/4615)
274   * [`debug_assert_with_mut_call`] [#4680](https://github.com/rust-lang/rust-clippy/pull/4680)
275   * [`unused_self`] [#4619](https://github.com/rust-lang/rust-clippy/pull/4619)
276   * [`inefficient_to_string`] [#4683](https://github.com/rust-lang/rust-clippy/pull/4683)
277   * [`must_use_unit`] [#4560](https://github.com/rust-lang/rust-clippy/pull/4560)
278   * [`must_use_candidate`] [#4560](https://github.com/rust-lang/rust-clippy/pull/4560)
279   * [`double_must_use`] [#4560](https://github.com/rust-lang/rust-clippy/pull/4560)
280   * [`comparison_chain`] [#4569](https://github.com/rust-lang/rust-clippy/pull/4569)
281   * [`unsound_collection_transmute`] [#4592](https://github.com/rust-lang/rust-clippy/pull/4592)
282   * [`panic`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
283   * [`unreachable`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
284   * [`todo`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
285   * [`option_expect_used`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
286   * [`result_expect_used`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
287 * Move `redundant_clone` to perf group [#4509](https://github.com/rust-lang/rust-clippy/pull/4509)
288 * Move `manual_mul_add` to nursery group [#4736](https://github.com/rust-lang/rust-clippy/pull/4736)
289 * Expand `unit_cmp` to also work with `assert_eq!`, `debug_assert_eq!`, `assert_ne!` and `debug_assert_ne!` [#4613](https://github.com/rust-lang/rust-clippy/pull/4613)
290 * Expand `integer_arithmetic` to also detect mutating arithmetic like `+=` [#4585](https://github.com/rust-lang/rust-clippy/pull/4585)
291 * Fix false positive in `nonminimal_bool` [#4568](https://github.com/rust-lang/rust-clippy/pull/4568)
292 * Fix false positive in `missing_safety_doc` [#4611](https://github.com/rust-lang/rust-clippy/pull/4611)
293 * Fix false positive in `cast_sign_loss` [#4614](https://github.com/rust-lang/rust-clippy/pull/4614)
294 * Fix false positive in `redundant_clone` [#4509](https://github.com/rust-lang/rust-clippy/pull/4509)
295 * Fix false positive in `try_err` [#4721](https://github.com/rust-lang/rust-clippy/pull/4721)
296 * Fix false positive in `toplevel_ref_arg` [#4570](https://github.com/rust-lang/rust-clippy/pull/4570)
297 * Fix false positive in `multiple_inherent_impl` [#4593](https://github.com/rust-lang/rust-clippy/pull/4593)
298 * Improve more suggestions and tests in preparation for the unstable `cargo fix --clippy` [#4575](https://github.com/rust-lang/rust-clippy/pull/4575)
299 * Improve suggestion for `zero_ptr` [#4599](https://github.com/rust-lang/rust-clippy/pull/4599)
300 * Improve suggestion for `explicit_counter_loop` [#4691](https://github.com/rust-lang/rust-clippy/pull/4691)
301 * Improve suggestion for `mul_add` [#4602](https://github.com/rust-lang/rust-clippy/pull/4602)
302 * Improve suggestion for `assertions_on_constants` [#4635](https://github.com/rust-lang/rust-clippy/pull/4635)
303 * Fix ICE in `use_self` [#4671](https://github.com/rust-lang/rust-clippy/pull/4671)
304 * Fix ICE when encountering const casts [#4590](https://github.com/rust-lang/rust-clippy/pull/4590)
305
306 ## Rust 1.39
307
308 Released 2019-11-07
309
310 [3aea860...4e7e71b](https://github.com/rust-lang/rust-clippy/compare/3aea860...4e7e71b)
311
312 * New Lints:
313   * [`uninit_assumed_init`] [#4479](https://github.com/rust-lang/rust-clippy/pull/4479)
314   * [`flat_map_identity`] [#4231](https://github.com/rust-lang/rust-clippy/pull/4231)
315   * [`missing_safety_doc`] [#4535](https://github.com/rust-lang/rust-clippy/pull/4535)
316   * [`mem_replace_with_uninit`] [#4511](https://github.com/rust-lang/rust-clippy/pull/4511)
317   * [`suspicious_map`] [#4394](https://github.com/rust-lang/rust-clippy/pull/4394)
318   * [`option_and_then_some`] [#4386](https://github.com/rust-lang/rust-clippy/pull/4386)
319   * [`manual_saturating_arithmetic`] [#4498](https://github.com/rust-lang/rust-clippy/pull/4498)
320 * Deprecate `unused_collect` lint. This is fully covered by rustc's `#[must_use]` on `collect` [#4348](https://github.com/rust-lang/rust-clippy/pull/4348)
321 * Move `type_repetition_in_bounds` to pedantic group [#4403](https://github.com/rust-lang/rust-clippy/pull/4403)
322 * Move `cast_lossless` to pedantic group [#4539](https://github.com/rust-lang/rust-clippy/pull/4539)
323 * `temporary_cstring_as_ptr` now catches more cases [#4425](https://github.com/rust-lang/rust-clippy/pull/4425)
324 * `use_self` now works in constructors, too [#4525](https://github.com/rust-lang/rust-clippy/pull/4525)
325 * `cargo_common_metadata` now checks for license files [#4518](https://github.com/rust-lang/rust-clippy/pull/4518)
326 * `cognitive_complexity` now includes the measured complexity in the warning message [#4469](https://github.com/rust-lang/rust-clippy/pull/4469)
327 * Fix false positives in `block_in_if_*` lints [#4458](https://github.com/rust-lang/rust-clippy/pull/4458)
328 * Fix false positive in `cast_lossless` [#4473](https://github.com/rust-lang/rust-clippy/pull/4473)
329 * Fix false positive in `clone_on_copy` [#4411](https://github.com/rust-lang/rust-clippy/pull/4411)
330 * Fix false positive in `deref_addrof` [#4487](https://github.com/rust-lang/rust-clippy/pull/4487)
331 * Fix false positive in `too_many_lines` [#4490](https://github.com/rust-lang/rust-clippy/pull/4490)
332 * Fix false positive in `new_ret_no_self` [#4365](https://github.com/rust-lang/rust-clippy/pull/4365)
333 * Fix false positive in `manual_swap` [#4478](https://github.com/rust-lang/rust-clippy/pull/4478)
334 * Fix false positive in `missing_const_for_fn` [#4450](https://github.com/rust-lang/rust-clippy/pull/4450)
335 * Fix false positive in `extra_unused_lifetimes` [#4477](https://github.com/rust-lang/rust-clippy/pull/4477)
336 * Fix false positive in `inherent_to_string` [#4460](https://github.com/rust-lang/rust-clippy/pull/4460)
337 * Fix false positive in `map_entry` [#4495](https://github.com/rust-lang/rust-clippy/pull/4495)
338 * Fix false positive in `unused_unit` [#4445](https://github.com/rust-lang/rust-clippy/pull/4445)
339 * Fix false positive in `redundant_pattern` [#4489](https://github.com/rust-lang/rust-clippy/pull/4489)
340 * Fix false positive in `wrong_self_convention` [#4369](https://github.com/rust-lang/rust-clippy/pull/4369)
341 * Improve various suggestions and tests in preparation for the unstable `cargo fix --clippy` [#4558](https://github.com/rust-lang/rust-clippy/pull/4558)
342 * Improve suggestions for `redundant_pattern_matching` [#4352](https://github.com/rust-lang/rust-clippy/pull/4352)
343 * Improve suggestions for `explicit_write` [#4544](https://github.com/rust-lang/rust-clippy/pull/4544)
344 * Improve suggestion for `or_fun_call` [#4522](https://github.com/rust-lang/rust-clippy/pull/4522)
345 * Improve suggestion for `match_as_ref` [#4446](https://github.com/rust-lang/rust-clippy/pull/4446)
346 * Improve suggestion for `unnecessary_fold_span` [#4382](https://github.com/rust-lang/rust-clippy/pull/4382)
347 * Add suggestions for `unseparated_literal_suffix` [#4401](https://github.com/rust-lang/rust-clippy/pull/4401)
348 * Add suggestions for `char_lit_as_u8` [#4418](https://github.com/rust-lang/rust-clippy/pull/4418)
349
350 ## Rust 1.38
351
352 Released 2019-09-26
353
354 [e3cb40e...3aea860](https://github.com/rust-lang/rust-clippy/compare/e3cb40e...3aea860)
355
356 * New Lints:
357   * [`main_recursion`] [#4203](https://github.com/rust-lang/rust-clippy/pull/4203)
358   * [`inherent_to_string`] [#4259](https://github.com/rust-lang/rust-clippy/pull/4259)
359   * [`inherent_to_string_shadow_display`] [#4259](https://github.com/rust-lang/rust-clippy/pull/4259)
360   * [`type_repetition_in_bounds`] [#3766](https://github.com/rust-lang/rust-clippy/pull/3766)
361   * [`try_err`] [#4222](https://github.com/rust-lang/rust-clippy/pull/4222)
362 * Move `{unnnecessary,panicking}_unwrap` out of nursery [#4307](https://github.com/rust-lang/rust-clippy/pull/4307)
363 * Extend the `use_self` lint to suggest uses of `Self::Variant` [#4308](https://github.com/rust-lang/rust-clippy/pull/4308)
364 * Improve suggestion for needless return [#4262](https://github.com/rust-lang/rust-clippy/pull/4262)
365 * Add auto-fixable suggestion for `let_unit` [#4337](https://github.com/rust-lang/rust-clippy/pull/4337)
366 * Fix false positive in `pub_enum_variant_names` and `enum_variant_names` [#4345](https://github.com/rust-lang/rust-clippy/pull/4345)
367 * Fix false positive in `cast_ptr_alignment` [#4257](https://github.com/rust-lang/rust-clippy/pull/4257)
368 * Fix false positive in `string_lit_as_bytes` [#4233](https://github.com/rust-lang/rust-clippy/pull/4233)
369 * Fix false positive in `needless_lifetimes` [#4266](https://github.com/rust-lang/rust-clippy/pull/4266)
370 * Fix false positive in `float_cmp` [#4275](https://github.com/rust-lang/rust-clippy/pull/4275)
371 * Fix false positives in `needless_return` [#4274](https://github.com/rust-lang/rust-clippy/pull/4274)
372 * Fix false negative in `match_same_arms` [#4246](https://github.com/rust-lang/rust-clippy/pull/4246)
373 * Fix incorrect suggestion for `needless_bool` [#4335](https://github.com/rust-lang/rust-clippy/pull/4335)
374 * Improve suggestion for `cast_ptr_alignment` [#4257](https://github.com/rust-lang/rust-clippy/pull/4257)
375 * Improve suggestion for `single_char_literal` [#4361](https://github.com/rust-lang/rust-clippy/pull/4361)
376 * Improve suggestion for `len_zero` [#4314](https://github.com/rust-lang/rust-clippy/pull/4314)
377 * Fix ICE in `implicit_hasher` [#4268](https://github.com/rust-lang/rust-clippy/pull/4268)
378 * Fix allow bug in `trivially_copy_pass_by_ref` [#4250](https://github.com/rust-lang/rust-clippy/pull/4250)
379
380 ## Rust 1.37
381
382 Released 2019-08-15
383
384 [082cfa7...e3cb40e](https://github.com/rust-lang/rust-clippy/compare/082cfa7...e3cb40e)
385
386 * New Lints:
387   * [`checked_conversions`] [#4088](https://github.com/rust-lang/rust-clippy/pull/4088)
388   * [`get_last_with_len`] [#3832](https://github.com/rust-lang/rust-clippy/pull/3832)
389   * [`integer_division`] [#4195](https://github.com/rust-lang/rust-clippy/pull/4195)
390 * Renamed Lint: `const_static_lifetime` is now called [`redundant_static_lifetimes`].
391   The lint now covers statics in addition to consts [#4162](https://github.com/rust-lang/rust-clippy/pull/4162)
392 * [`match_same_arms`] now warns for all identical arms, instead of only the first one [#4102](https://github.com/rust-lang/rust-clippy/pull/4102)
393 * [`needless_return`] now works with void functions [#4220](https://github.com/rust-lang/rust-clippy/pull/4220)
394 * Fix false positive in [`redundant_closure`] [#4190](https://github.com/rust-lang/rust-clippy/pull/4190)
395 * Fix false positive in [`useless_attribute`] [#4107](https://github.com/rust-lang/rust-clippy/pull/4107)
396 * Fix incorrect suggestion for [`float_cmp`] [#4214](https://github.com/rust-lang/rust-clippy/pull/4214)
397 * Add suggestions for [`print_with_newline`] and [`write_with_newline`] [#4136](https://github.com/rust-lang/rust-clippy/pull/4136)
398 * Improve suggestions for [`option_map_unwrap_or_else`] and [`result_map_unwrap_or_else`] [#4164](https://github.com/rust-lang/rust-clippy/pull/4164)
399 * Improve suggestions for [`non_ascii_literal`] [#4119](https://github.com/rust-lang/rust-clippy/pull/4119)
400 * Improve diagnostics for [`let_and_return`] [#4137](https://github.com/rust-lang/rust-clippy/pull/4137)
401 * Improve diagnostics for [`trivially_copy_pass_by_ref`] [#4071](https://github.com/rust-lang/rust-clippy/pull/4071)
402 * Add macro check for [`unreadable_literal`] [#4099](https://github.com/rust-lang/rust-clippy/pull/4099)
403
404 ## Rust 1.36
405
406 Released 2019-07-04
407
408 [eb9f9b1...082cfa7](https://github.com/rust-lang/rust-clippy/compare/eb9f9b1...082cfa7)
409
410 * New lints: [`find_map`], [`filter_map_next`] [#4039](https://github.com/rust-lang/rust-clippy/pull/4039)
411 * New lint: [`path_buf_push_overwrite`] [#3954](https://github.com/rust-lang/rust-clippy/pull/3954)
412 * Move `path_buf_push_overwrite` to the nursery [#4013](https://github.com/rust-lang/rust-clippy/pull/4013)
413 * Split [`redundant_closure`] into [`redundant_closure`] and [`redundant_closure_for_method_calls`] [#4110](https://github.com/rust-lang/rust-clippy/pull/4101)
414 * Allow allowing of [`toplevel_ref_arg`] lint [#4007](https://github.com/rust-lang/rust-clippy/pull/4007)
415 * Fix false negative in [`or_fun_call`] pertaining to nested constructors [#4084](https://github.com/rust-lang/rust-clippy/pull/4084)
416 * Fix false positive in [`or_fun_call`] pertaining to enum variant constructors [#4018](https://github.com/rust-lang/rust-clippy/pull/4018)
417 * Fix false positive in [`useless_let_if_seq`] pertaining to interior mutability [#4035](https://github.com/rust-lang/rust-clippy/pull/4035)
418 * Fix false positive in [`redundant_closure`] pertaining to non-function types [#4008](https://github.com/rust-lang/rust-clippy/pull/4008)
419 * Fix false positive in [`let_and_return`] pertaining to attributes on `let`s [#4024](https://github.com/rust-lang/rust-clippy/pull/4024)
420 * Fix false positive in [`module_name_repetitions`] lint pertaining to attributes [#4006](https://github.com/rust-lang/rust-clippy/pull/4006)
421 * Fix false positive on [`assertions_on_constants`] pertaining to `debug_assert!` [#3989](https://github.com/rust-lang/rust-clippy/pull/3989)
422 * Improve suggestion in [`map_clone`] to suggest `.copied()` where applicable  [#3970](https://github.com/rust-lang/rust-clippy/pull/3970) [#4043](https://github.com/rust-lang/rust-clippy/pull/4043)
423 * Improve suggestion for [`search_is_some`] [#4049](https://github.com/rust-lang/rust-clippy/pull/4049)
424 * Improve suggestion applicability for [`naive_bytecount`] [#3984](https://github.com/rust-lang/rust-clippy/pull/3984)
425 * Improve suggestion applicability for [`while_let_loop`] [#3975](https://github.com/rust-lang/rust-clippy/pull/3975)
426 * Improve diagnostics for [`too_many_arguments`] [#4053](https://github.com/rust-lang/rust-clippy/pull/4053)
427 * Improve diagnostics for [`cast_lossless`] [#4021](https://github.com/rust-lang/rust-clippy/pull/4021)
428 * Deal with macro checks in desugarings better [#4082](https://github.com/rust-lang/rust-clippy/pull/4082)
429 * Add macro check for [`unnecessary_cast`]  [#4026](https://github.com/rust-lang/rust-clippy/pull/4026)
430 * Remove [`approx_constant`]'s documentation's "Known problems" section. [#4027](https://github.com/rust-lang/rust-clippy/pull/4027)
431 * Fix ICE in [`suspicious_else_formatting`] [#3960](https://github.com/rust-lang/rust-clippy/pull/3960)
432 * Fix ICE in [`decimal_literal_representation`] [#3931](https://github.com/rust-lang/rust-clippy/pull/3931)
433
434
435 ## Rust 1.35
436
437 Released 2019-05-20
438
439 [1fac380..37f5c1e](https://github.com/rust-lang/rust-clippy/compare/1fac380...37f5c1e)
440
441 * New lint: [`drop_bounds`] to detect `T: Drop` bounds
442 * Split [`redundant_closure`] into [`redundant_closure`] and [`redundant_closure_for_method_calls`] [#4110](https://github.com/rust-lang/rust-clippy/pull/4101)
443 * Rename `cyclomatic_complexity` to [`cognitive_complexity`], start work on making lint more practical for Rust code
444 * Move [`get_unwrap`] to the restriction category
445 * Improve suggestions for [`iter_cloned_collect`]
446 * Improve suggestions for [`cast_lossless`] to suggest suffixed literals
447 * Fix false positives in [`print_with_newline`] and [`write_with_newline`] pertaining to raw strings
448 * Fix false positive in [`needless_range_loop`] pertaining to structs without a `.iter()`
449 * Fix false positive in [`bool_comparison`] pertaining to non-bool types
450 * Fix false positive in [`redundant_closure`] pertaining to differences in borrows
451 * Fix false positive in [`option_map_unwrap_or`] on non-copy types
452 * Fix false positives in [`missing_const_for_fn`] pertaining to macros and trait method impls
453 * Fix false positive in [`needless_pass_by_value`] pertaining to procedural macros
454 * Fix false positive in [`needless_continue`] pertaining to loop labels
455 * Fix false positive for [`boxed_local`] pertaining to arguments moved into closures
456 * Fix false positive for [`use_self`] in nested functions
457 * Fix suggestion for [`expect_fun_call`] (https://github.com/rust-lang/rust-clippy/pull/3846)
458 * Fix suggestion for [`explicit_counter_loop`] to deal with parenthesizing range variables
459 * Fix suggestion for [`single_char_pattern`] to correctly escape single quotes
460 * Avoid triggering [`redundant_closure`] in macros
461 * ICE fixes: [#3805](https://github.com/rust-lang/rust-clippy/pull/3805), [#3772](https://github.com/rust-lang/rust-clippy/pull/3772), [#3741](https://github.com/rust-lang/rust-clippy/pull/3741)
462
463 ## Rust 1.34
464
465 Released 2019-04-10
466
467 [1b89724...1fac380](https://github.com/rust-lang/rust-clippy/compare/1b89724...1fac380)
468
469 * New lint: [`assertions_on_constants`] to detect for example `assert!(true)`
470 * New lint: [`dbg_macro`] to detect uses of the `dbg!` macro
471 * New lint: [`missing_const_for_fn`] that can suggest functions to be made `const`
472 * New lint: [`too_many_lines`] to detect functions with excessive LOC. It can be
473   configured using the `too-many-lines-threshold` configuration.
474 * New lint: [`wildcard_enum_match_arm`] to check for wildcard enum matches using `_`
475 * Expand `redundant_closure` to also work for methods (not only functions)
476 * Fix ICEs in `vec_box`, `needless_pass_by_value` and `implicit_hasher`
477 * Fix false positive in `cast_sign_loss`
478 * Fix false positive in `integer_arithmetic`
479 * Fix false positive in `unit_arg`
480 * Fix false positives in `implicit_return`
481 * Add suggestion to `explicit_write`
482 * Improve suggestions for `question_mark` lint
483 * Fix incorrect suggestion for `cast_lossless`
484 * Fix incorrect suggestion for `expect_fun_call`
485 * Fix incorrect suggestion for `needless_bool`
486 * Fix incorrect suggestion for `needless_range_loop`
487 * Fix incorrect suggestion for `use_self`
488 * Fix incorrect suggestion for `while_let_on_iterator`
489 * Clippy is now slightly easier to invoke in non-cargo contexts. See
490   [#3665][pull3665] for more details.
491 * We now have [improved documentation][adding_lints] on how to add new lints
492
493 ## Rust 1.33
494
495 Released 2019-02-26
496
497 [b2601be...1b89724](https://github.com/rust-lang/rust-clippy/compare/b2601be...1b89724)
498
499 * New lints: [`implicit_return`], [`vec_box`], [`cast_ref_to_mut`]
500 * The `rust-clippy` repository is now part of the `rust-lang` org.
501 * Rename `stutter` to `module_name_repetitions`
502 * Merge `new_without_default_derive` into `new_without_default` lint
503 * Move `large_digit_groups` from `style` group to `pedantic`
504 * Expand `bool_comparison` to check for `<`, `<=`, `>`, `>=`, and `!=`
505   comparisons against booleans
506 * Expand `no_effect` to detect writes to constants such as `A_CONST.field = 2`
507 * Expand `redundant_clone` to work on struct fields
508 * Expand `suspicious_else_formatting` to detect `if .. {..} {..}`
509 * Expand `use_self` to work on tuple structs and also in local macros
510 * Fix ICE in `result_map_unit_fn` and `option_map_unit_fn`
511 * Fix false positives in `implicit_return`
512 * Fix false positives in `use_self`
513 * Fix false negative in `clone_on_copy`
514 * Fix false positive in `doc_markdown`
515 * Fix false positive in `empty_loop`
516 * Fix false positive in `if_same_then_else`
517 * Fix false positive in `infinite_iter`
518 * Fix false positive in `question_mark`
519 * Fix false positive in `useless_asref`
520 * Fix false positive in `wildcard_dependencies`
521 * Fix false positive in `write_with_newline`
522 * Add suggestion to `explicit_write`
523 * Improve suggestions for `question_mark` lint
524 * Fix incorrect suggestion for `get_unwrap`
525
526 ## Rust 1.32
527
528 Released 2019-01-17
529
530 [2e26fdc2...b2601be](https://github.com/rust-lang/rust-clippy/compare/2e26fdc2...b2601be)
531
532 * New lints: [`slow_vector_initialization`], [`mem_discriminant_non_enum`],
533   [`redundant_clone`], [`wildcard_dependencies`],
534   [`into_iter_on_ref`], [`into_iter_on_array`], [`deprecated_cfg_attr`],
535   [`mem_discriminant_non_enum`], [`cargo_common_metadata`]
536 * Add support for `u128` and `i128` to integer related lints
537 * Add float support to `mistyped_literal_suffixes`
538 * Fix false positives in `use_self`
539 * Fix false positives in `missing_comma`
540 * Fix false positives in `new_ret_no_self`
541 * Fix false positives in `possible_missing_comma`
542 * Fix false positive in `integer_arithmetic` in constant items
543 * Fix false positive in `needless_borrow`
544 * Fix false positive in `out_of_bounds_indexing`
545 * Fix false positive in `new_without_default_derive`
546 * Fix false positive in `string_lit_as_bytes`
547 * Fix false negative in `out_of_bounds_indexing`
548 * Fix false negative in `use_self`. It will now also check existential types
549 * Fix incorrect suggestion for `redundant_closure_call`
550 * Fix various suggestions that contained expanded macros
551 * Fix `bool_comparison` triggering 3 times on on on the same code
552 * Expand `trivially_copy_pass_by_ref` to work on trait methods
553 * Improve suggestion for `needless_range_loop`
554 * Move `needless_pass_by_value` from `pedantic` group to `style`
555
556 ## Rust 1.31
557
558 Released 2018-12-06
559
560 [125907ad..2e26fdc2](https://github.com/rust-lang/rust-clippy/compare/125907ad..2e26fdc2)
561
562 * Clippy has been relicensed under a dual MIT / Apache license.
563   See [#3093](https://github.com/rust-lang/rust-clippy/issues/3093) for more
564   information.
565 * With Rust 1.31, Clippy is no longer available via crates.io. The recommended
566   installation method is via `rustup component add clippy`.
567 * New lints: [`redundant_pattern_matching`], [`unnecessary_filter_map`],
568   [`unused_unit`], [`map_flatten`], [`mem_replace_option_with_none`]
569 * Fix ICE in `if_let_redundant_pattern_matching`
570 * Fix ICE in `needless_pass_by_value` when encountering a generic function
571   argument with a lifetime parameter
572 * Fix ICE in `needless_range_loop`
573 * Fix ICE in `single_char_pattern` when encountering a constant value
574 * Fix false positive in `assign_op_pattern`
575 * Fix false positive in `boxed_local` on trait implementations
576 * Fix false positive in `cmp_owned`
577 * Fix false positive in `collapsible_if` when conditionals have comments
578 * Fix false positive in `double_parens`
579 * Fix false positive in `excessive_precision`
580 * Fix false positive in `explicit_counter_loop`
581 * Fix false positive in `fn_to_numeric_cast_with_truncation`
582 * Fix false positive in `map_clone`
583 * Fix false positive in `new_ret_no_self`
584 * Fix false positive in `new_without_default` when `new` is unsafe
585 * Fix false positive in `type_complexity` when using extern types
586 * Fix false positive in `useless_format`
587 * Fix false positive in `wrong_self_convention`
588 * Fix incorrect suggestion for `excessive_precision`
589 * Fix incorrect suggestion for `expect_fun_call`
590 * Fix incorrect suggestion for `get_unwrap`
591 * Fix incorrect suggestion for `useless_format`
592 * `fn_to_numeric_cast_with_truncation` lint can be disabled again
593 * Improve suggestions for `manual_memcpy`
594 * Improve help message for `needless_lifetimes`
595
596 ## Rust 1.30
597
598 Released 2018-10-25
599
600 [14207503...125907ad](https://github.com/rust-lang/rust-clippy/compare/14207503...125907ad)
601
602 * Deprecate `assign_ops` lint
603 * New lints: [`mistyped_literal_suffixes`], [`ptr_offset_with_cast`],
604   [`needless_collect`], [`copy_iterator`]
605 * `cargo clippy -V` now includes the Clippy commit hash of the Rust
606   Clippy component
607 * Fix ICE in `implicit_hasher`
608 * Fix ICE when encountering `println!("{}" a);`
609 * Fix ICE when encountering a macro call in match statements
610 * Fix false positive in `default_trait_access`
611 * Fix false positive in `trivially_copy_pass_by_ref`
612 * Fix false positive in `similar_names`
613 * Fix false positive in `redundant_field_name`
614 * Fix false positive in `expect_fun_call`
615 * Fix false negative in `identity_conversion`
616 * Fix false negative in `explicit_counter_loop`
617 * Fix `range_plus_one` suggestion and false negative
618 * `print_with_newline` / `write_with_newline`: don't warn about string with several `\n`s in them
619 * Fix `useless_attribute` to also whitelist `unused_extern_crates`
620 * Fix incorrect suggestion for `single_char_pattern`
621 * Improve suggestion for `identity_conversion` lint
622 * Move `explicit_iter_loop` and `explicit_into_iter_loop` from `style` group to `pedantic`
623 * Move `range_plus_one` and `range_minus_one` from `nursery` group to `complexity`
624 * Move `shadow_unrelated` from `restriction` group to `pedantic`
625 * Move `indexing_slicing` from `pedantic` group to `restriction`
626
627 ## Rust 1.29
628
629 Released 2018-09-13
630
631 [v0.0.212...14207503](https://github.com/rust-lang/rust-clippy/compare/v0.0.212...14207503)
632
633 * :tada: :tada: **Rust 1.29 is the first stable Rust that includes a bundled Clippy** :tada:
634   :tada:
635   You can now run `rustup component add clippy-preview` and then `cargo
636   clippy` to run Clippy. This should put an end to the continuous nightly
637   upgrades for Clippy users.
638 * Clippy now follows the Rust versioning scheme instead of its own
639 * Fix ICE when encountering a `while let (..) = x.iter()` construct
640 * Fix false positives in `use_self`
641 * Fix false positive in `trivially_copy_pass_by_ref`
642 * Fix false positive in `useless_attribute` lint
643 * Fix false positive in `print_literal`
644 * Fix `use_self` regressions
645 * Improve lint message for `neg_cmp_op_on_partial_ord`
646 * Improve suggestion highlight for `single_char_pattern`
647 * Improve suggestions for various print/write macro lints
648 * Improve website header
649
650 ## 0.0.212 (2018-07-10)
651 * Rustup to *rustc 1.29.0-nightly (e06c87544 2018-07-06)*
652
653 ## 0.0.211
654 * Rustup to *rustc 1.28.0-nightly (e3bf634e0 2018-06-28)*
655
656 ## 0.0.210
657 * Rustup to *rustc 1.28.0-nightly (01cc982e9 2018-06-24)*
658
659 ## 0.0.209
660 * Rustup to *rustc 1.28.0-nightly (523097979 2018-06-18)*
661
662 ## 0.0.208
663 * Rustup to *rustc 1.28.0-nightly (86a8f1a63 2018-06-17)*
664
665 ## 0.0.207
666 * Rustup to *rustc 1.28.0-nightly (2a0062974 2018-06-09)*
667
668 ## 0.0.206
669 * Rustup to *rustc 1.28.0-nightly (5bf68db6e 2018-05-28)*
670
671 ## 0.0.205
672 * Rustup to *rustc 1.28.0-nightly (990d8aa74 2018-05-25)*
673 * Rename `unused_lifetimes` to `extra_unused_lifetimes` because of naming conflict with new rustc lint
674
675 ## 0.0.204
676 * Rustup to *rustc 1.28.0-nightly (71e87be38 2018-05-22)*
677
678 ## 0.0.203
679 * Rustup to *rustc 1.28.0-nightly (a3085756e 2018-05-19)*
680 * Clippy attributes are now of the form `clippy::cyclomatic_complexity` instead of `clippy(cyclomatic_complexity)`
681
682 ## 0.0.202
683 * Rustup to *rustc 1.28.0-nightly (952f344cd 2018-05-18)*
684
685 ## 0.0.201
686 * Rustup to *rustc 1.27.0-nightly (2f2a11dfc 2018-05-16)*
687
688 ## 0.0.200
689 * Rustup to *rustc 1.27.0-nightly (9fae15374 2018-05-13)*
690
691 ## 0.0.199
692 * Rustup to *rustc 1.27.0-nightly (ff2ac35db 2018-05-12)*
693
694 ## 0.0.198
695 * Rustup to *rustc 1.27.0-nightly (acd3871ba 2018-05-10)*
696
697 ## 0.0.197
698 * Rustup to *rustc 1.27.0-nightly (428ea5f6b 2018-05-06)*
699
700 ## 0.0.196
701 * Rustup to *rustc 1.27.0-nightly (e82261dfb 2018-05-03)*
702
703 ## 0.0.195
704 * Rustup to *rustc 1.27.0-nightly (ac3c2288f 2018-04-18)*
705
706 ## 0.0.194
707 * Rustup to *rustc 1.27.0-nightly (bd40cbbe1 2018-04-14)*
708 * New lints: [`cast_ptr_alignment`], [`transmute_ptr_to_ptr`], [`write_literal`], [`write_with_newline`], [`writeln_empty_string`]
709
710 ## 0.0.193
711 * Rustup to *rustc 1.27.0-nightly (eeea94c11 2018-04-06)*
712
713 ## 0.0.192
714 * Rustup to *rustc 1.27.0-nightly (fb44b4c0e 2018-04-04)*
715 * New lint: [`print_literal`]
716
717 ## 0.0.191
718 * Rustup to *rustc 1.26.0-nightly (ae544ee1c 2018-03-29)*
719 * Lint audit; categorize lints as style, correctness, complexity, pedantic, nursery, restriction.
720
721 ## 0.0.190
722 * Fix a bunch of intermittent cargo bugs
723
724 ## 0.0.189
725 * Rustup to *rustc 1.26.0-nightly (5508b2714 2018-03-18)*
726
727 ## 0.0.188
728 * Rustup to *rustc 1.26.0-nightly (392645394 2018-03-15)*
729 * New lint: [`while_immutable_condition`]
730
731 ## 0.0.187
732 * Rustup to *rustc 1.26.0-nightly (322d7f7b9 2018-02-25)*
733 * New lints: [`redundant_field_names`], [`suspicious_arithmetic_impl`], [`suspicious_op_assign_impl`]
734
735 ## 0.0.186
736 * Rustup to *rustc 1.25.0-nightly (0c6091fbd 2018-02-04)*
737 * Various false positive fixes
738
739 ## 0.0.185
740 * Rustup to *rustc 1.25.0-nightly (56733bc9f 2018-02-01)*
741 * New lint: [`question_mark`]
742
743 ## 0.0.184
744 * Rustup to *rustc 1.25.0-nightly (90eb44a58 2018-01-29)*
745 * New lints: [`double_comparisons`], [`empty_line_after_outer_attr`]
746
747 ## 0.0.183
748 * Rustup to *rustc 1.25.0-nightly (21882aad7 2018-01-28)*
749 * New lint: [`misaligned_transmute`]
750
751 ## 0.0.182
752 * Rustup to *rustc 1.25.0-nightly (a0dcecff9 2018-01-24)*
753 * New lint: [`decimal_literal_representation`]
754
755 ## 0.0.181
756 * Rustup to *rustc 1.25.0-nightly (97520ccb1 2018-01-21)*
757 * New lints: [`else_if_without_else`], [`option_option`], [`unit_arg`], [`unnecessary_fold`]
758 * Removed `unit_expr`
759 * Various false positive fixes for [`needless_pass_by_value`]
760
761 ## 0.0.180
762 * Rustup to *rustc 1.25.0-nightly (3f92e8d89 2018-01-14)*
763
764 ## 0.0.179
765 * Rustup to *rustc 1.25.0-nightly (61452e506 2018-01-09)*
766
767 ## 0.0.178
768 * Rustup to *rustc 1.25.0-nightly (ee220daca 2018-01-07)*
769
770 ## 0.0.177
771 * Rustup to *rustc 1.24.0-nightly (250b49205 2017-12-21)*
772 * New lint: [`match_as_ref`]
773
774 ## 0.0.176
775 * Rustup to *rustc 1.24.0-nightly (0077d128d 2017-12-14)*
776
777 ## 0.0.175
778 * Rustup to *rustc 1.24.0-nightly (bb42071f6 2017-12-01)*
779
780 ## 0.0.174
781 * Rustup to *rustc 1.23.0-nightly (63739ab7b 2017-11-21)*
782
783 ## 0.0.173
784 * Rustup to *rustc 1.23.0-nightly (33374fa9d 2017-11-20)*
785
786 ## 0.0.172
787 * Rustup to *rustc 1.23.0-nightly (d0f8e2913 2017-11-16)*
788
789 ## 0.0.171
790 * Rustup to *rustc 1.23.0-nightly (ff0f5de3b 2017-11-14)*
791
792 ## 0.0.170
793 * Rustup to *rustc 1.23.0-nightly (d6b06c63a 2017-11-09)*
794
795 ## 0.0.169
796 * Rustup to *rustc 1.23.0-nightly (3b82e4c74 2017-11-05)*
797 * New lints: [`just_underscores_and_digits`], [`result_map_unwrap_or_else`], [`transmute_bytes_to_str`]
798
799 ## 0.0.168
800 * Rustup to *rustc 1.23.0-nightly (f0fe716db 2017-10-30)*
801
802 ## 0.0.167
803 * Rustup to *rustc 1.23.0-nightly (90ef3372e 2017-10-29)*
804 * New lints: `const_static_lifetime`, [`erasing_op`], [`fallible_impl_from`], [`println_empty_string`], [`useless_asref`]
805
806 ## 0.0.166
807 * Rustup to *rustc 1.22.0-nightly (b7960878b 2017-10-18)*
808 * New lints: [`explicit_write`], [`identity_conversion`], [`implicit_hasher`], [`invalid_ref`], [`option_map_or_none`],
809   [`range_minus_one`], [`range_plus_one`], [`transmute_int_to_bool`], [`transmute_int_to_char`],
810   [`transmute_int_to_float`]
811
812 ## 0.0.165
813 * Rust upgrade to rustc 1.22.0-nightly (0e6f4cf51 2017-09-27)
814 * New lint: [`mut_range_bound`]
815
816 ## 0.0.164
817 * Update to *rustc 1.22.0-nightly (6c476ce46 2017-09-25)*
818 * New lint: [`int_plus_one`]
819
820 ## 0.0.163
821 * Update to *rustc 1.22.0-nightly (14039a42a 2017-09-22)*
822
823 ## 0.0.162
824 * Update to *rustc 1.22.0-nightly (0701b37d9 2017-09-18)*
825 * New lint: [`chars_last_cmp`]
826 * Improved suggestions for [`needless_borrow`], [`ptr_arg`],
827
828 ## 0.0.161
829 * Update to *rustc 1.22.0-nightly (539f2083d 2017-09-13)*
830
831 ## 0.0.160
832 * Update to *rustc 1.22.0-nightly (dd08c3070 2017-09-12)*
833
834 ## 0.0.159
835 * Update to *rustc 1.22.0-nightly (eba374fb2 2017-09-11)*
836 * New lint: [`clone_on_ref_ptr`]
837
838 ## 0.0.158
839 * New lint: [`manual_memcpy`]
840 * [`cast_lossless`] no longer has redundant parentheses in its suggestions
841 * Update to *rustc 1.22.0-nightly (dead08cb3 2017-09-08)*
842
843 ## 0.0.157 - 2017-09-04
844 * Update to *rustc 1.22.0-nightly (981ce7d8d 2017-09-03)*
845 * New lint: `unit_expr`
846
847 ## 0.0.156 - 2017-09-03
848 * Update to *rustc 1.22.0-nightly (744dd6c1d 2017-09-02)*
849
850 ## 0.0.155
851 * Update to *rustc 1.21.0-nightly (c11f689d2 2017-08-29)*
852 * New lint: [`infinite_iter`], [`maybe_infinite_iter`], [`cast_lossless`]
853
854 ## 0.0.154
855 * Update to *rustc 1.21.0-nightly (2c0558f63 2017-08-24)*
856 * Fix [`use_self`] triggering inside derives
857 * Add support for linting an entire workspace with `cargo clippy --all`
858 * New lint: [`naive_bytecount`]
859
860 ## 0.0.153
861 * Update to *rustc 1.21.0-nightly (8c303ed87 2017-08-20)*
862 * New lint: [`use_self`]
863
864 ## 0.0.152
865 * Update to *rustc 1.21.0-nightly (df511d554 2017-08-14)*
866
867 ## 0.0.151
868 * Update to *rustc 1.21.0-nightly (13d94d5fa 2017-08-10)*
869
870 ## 0.0.150
871 * Update to *rustc 1.21.0-nightly (215e0b10e 2017-08-08)*
872
873 ## 0.0.148
874 * Update to *rustc 1.21.0-nightly (37c7d0ebb 2017-07-31)*
875 * New lints: [`unreadable_literal`], [`inconsistent_digit_grouping`], [`large_digit_groups`]
876
877 ## 0.0.147
878 * Update to *rustc 1.21.0-nightly (aac223f4f 2017-07-30)*
879
880 ## 0.0.146
881 * Update to *rustc 1.21.0-nightly (52a330969 2017-07-27)*
882 * Fixes false positives in `inline_always`
883 * Fixes false negatives in `panic_params`
884
885 ## 0.0.145
886 * Update to *rustc 1.20.0-nightly (afe145d22 2017-07-23)*
887
888 ## 0.0.144
889 * Update to *rustc 1.20.0-nightly (086eaa78e 2017-07-15)*
890
891 ## 0.0.143
892 * Update to *rustc 1.20.0-nightly (d84693b93 2017-07-09)*
893 * Fix `cargo clippy` crashing on `dylib` projects
894 * Fix false positives around `nested_while_let` and `never_loop`
895
896 ## 0.0.142
897 * Update to *rustc 1.20.0-nightly (067971139 2017-07-02)*
898
899 ## 0.0.141
900 * Rewrite of the `doc_markdown` lint.
901 * Deprecated [`range_step_by_zero`]
902 * New lint: [`iterator_step_by_zero`]
903 * New lint: [`needless_borrowed_reference`]
904 * Update to *rustc 1.20.0-nightly (69c65d296 2017-06-28)*
905
906 ## 0.0.140 - 2017-06-16
907 * Update to *rustc 1.19.0-nightly (258ae6dd9 2017-06-15)*
908
909 ## 0.0.139 — 2017-06-10
910 * Update to *rustc 1.19.0-nightly (4bf5c99af 2017-06-10)*
911 * Fix bugs with for loop desugaring
912 * Check for [`AsRef`]/[`AsMut`] arguments in [`wrong_self_convention`]
913
914 ## 0.0.138 — 2017-06-05
915 * Update to *rustc 1.19.0-nightly (0418fa9d3 2017-06-04)*
916
917 ## 0.0.137 — 2017-06-05
918 * Update to *rustc 1.19.0-nightly (6684d176c 2017-06-03)*
919
920 ## 0.0.136 — 2017—05—26
921 * Update to *rustc 1.19.0-nightly (557967766 2017-05-26)*
922
923 ## 0.0.135 — 2017—05—24
924 * Update to *rustc 1.19.0-nightly (5b13bff52 2017-05-23)*
925
926 ## 0.0.134 — 2017—05—19
927 * Update to *rustc 1.19.0-nightly (0ed1ec9f9 2017-05-18)*
928
929 ## 0.0.133 — 2017—05—14
930 * Update to *rustc 1.19.0-nightly (826d8f385 2017-05-13)*
931
932 ## 0.0.132 — 2017—05—05
933 * Fix various bugs and some ices
934
935 ## 0.0.131 — 2017—05—04
936 * Update to *rustc 1.19.0-nightly (2d4ed8e0c 2017-05-03)*
937
938 ## 0.0.130 — 2017—05—03
939 * Update to *rustc 1.19.0-nightly (6a5fc9eec 2017-05-02)*
940
941 ## 0.0.129 — 2017-05-01
942 * Update to *rustc 1.19.0-nightly (06fb4d256 2017-04-30)*
943
944 ## 0.0.128 — 2017-04-28
945 * Update to *rustc 1.18.0-nightly (94e884b63 2017-04-27)*
946
947 ## 0.0.127 — 2017-04-27
948 * Update to *rustc 1.18.0-nightly (036983201 2017-04-26)*
949 * New lint: [`needless_continue`]
950
951 ## 0.0.126 — 2017-04-24
952 * Update to *rustc 1.18.0-nightly (2bd4b5c6d 2017-04-23)*
953
954 ## 0.0.125 — 2017-04-19
955 * Update to *rustc 1.18.0-nightly (9f2abadca 2017-04-18)*
956
957 ## 0.0.124 — 2017-04-16
958 * Update to *rustc 1.18.0-nightly (d5cf1cb64 2017-04-15)*
959
960 ## 0.0.123 — 2017-04-07
961 * Fix various false positives
962
963 ## 0.0.122 — 2017-04-07
964 * Rustup to *rustc 1.18.0-nightly (91ae22a01 2017-04-05)*
965 * New lint: [`op_ref`]
966
967 ## 0.0.121 — 2017-03-21
968 * Rustup to *rustc 1.17.0-nightly (134c4a0f0 2017-03-20)*
969
970 ## 0.0.120 — 2017-03-17
971 * Rustup to *rustc 1.17.0-nightly (0aeb9c129 2017-03-15)*
972
973 ## 0.0.119 — 2017-03-13
974 * Rustup to *rustc 1.17.0-nightly (824c9ebbd 2017-03-12)*
975
976 ## 0.0.118 — 2017-03-05
977 * Rustup to *rustc 1.17.0-nightly (b1e31766d 2017-03-03)*
978
979 ## 0.0.117 — 2017-03-01
980 * Rustup to *rustc 1.17.0-nightly (be760566c 2017-02-28)*
981
982 ## 0.0.116 — 2017-02-28
983 * Fix `cargo clippy` on 64 bit windows systems
984
985 ## 0.0.115 — 2017-02-27
986 * Rustup to *rustc 1.17.0-nightly (60a0edc6c 2017-02-26)*
987 * New lints: [`zero_ptr`], [`never_loop`], [`mut_from_ref`]
988
989 ## 0.0.114 — 2017-02-08
990 * Rustup to *rustc 1.17.0-nightly (c49d10207 2017-02-07)*
991 * Tests are now ui tests (testing the exact output of rustc)
992
993 ## 0.0.113 — 2017-02-04
994 * Rustup to *rustc 1.16.0-nightly (eedaa94e3 2017-02-02)*
995 * New lint: [`large_enum_variant`]
996 * `explicit_into_iter_loop` provides suggestions
997
998 ## 0.0.112 — 2017-01-27
999 * Rustup to *rustc 1.16.0-nightly (df8debf6d 2017-01-25)*
1000
1001 ## 0.0.111 — 2017-01-21
1002 * Rustup to *rustc 1.16.0-nightly (a52da95ce 2017-01-20)*
1003
1004 ## 0.0.110 — 2017-01-20
1005 * Add badges and categories to `Cargo.toml`
1006
1007 ## 0.0.109 — 2017-01-19
1008 * Update to *rustc 1.16.0-nightly (c07a6ae77 2017-01-17)*
1009
1010 ## 0.0.108 — 2017-01-12
1011 * Update to *rustc 1.16.0-nightly (2782e8f8f 2017-01-12)*
1012
1013 ## 0.0.107 — 2017-01-11
1014 * Update regex dependency
1015 * Fix FP when matching `&&mut` by `&ref`
1016 * Reintroduce `for (_, x) in &mut hash_map` -> `for x in hash_map.values_mut()`
1017 * New lints: [`unused_io_amount`], [`forget_ref`], [`short_circuit_statement`]
1018
1019 ## 0.0.106 — 2017-01-04
1020 * Fix FP introduced by rustup in [`wrong_self_convention`]
1021
1022 ## 0.0.105 — 2017-01-04
1023 * Update to *rustc 1.16.0-nightly (468227129 2017-01-03)*
1024 * New lints: [`deref_addrof`], [`double_parens`], [`pub_enum_variant_names`]
1025 * Fix suggestion in [`new_without_default`]
1026 * FP fix in [`absurd_extreme_comparisons`]
1027
1028 ## 0.0.104 — 2016-12-15
1029 * Update to *rustc 1.15.0-nightly (8f02c429a 2016-12-15)*
1030
1031 ## 0.0.103 — 2016-11-25
1032 * Update to *rustc 1.15.0-nightly (d5814b03e 2016-11-23)*
1033
1034 ## 0.0.102 — 2016-11-24
1035 * Update to *rustc 1.15.0-nightly (3bf2be9ce 2016-11-22)*
1036
1037 ## 0.0.101 — 2016-11-23
1038 * Update to *rustc 1.15.0-nightly (7b3eeea22 2016-11-21)*
1039 * New lint: [`string_extend_chars`]
1040
1041 ## 0.0.100 — 2016-11-20
1042 * Update to *rustc 1.15.0-nightly (ac635aa95 2016-11-18)*
1043
1044 ## 0.0.99 — 2016-11-18
1045 * Update to rustc 1.15.0-nightly (0ed951993 2016-11-14)
1046 * New lint: [`get_unwrap`]
1047
1048 ## 0.0.98 — 2016-11-08
1049 * Fixes an issue due to a change in how cargo handles `--sysroot`, which broke `cargo clippy`
1050
1051 ## 0.0.97 — 2016-11-03
1052 * For convenience, `cargo clippy` defines a `cargo-clippy` feature. This was
1053   previously added for a short time under the name `clippy` but removed for
1054   compatibility.
1055 * `cargo clippy --help` is more helping (and less helpful :smile:)
1056 * Rustup to *rustc 1.14.0-nightly (5665bdf3e 2016-11-02)*
1057 * New lints: [`if_let_redundant_pattern_matching`], [`partialeq_ne_impl`]
1058
1059 ## 0.0.96 — 2016-10-22
1060 * Rustup to *rustc 1.14.0-nightly (f09420685 2016-10-20)*
1061 * New lint: [`iter_skip_next`]
1062
1063 ## 0.0.95 — 2016-10-06
1064 * Rustup to *rustc 1.14.0-nightly (3210fd5c2 2016-10-05)*
1065
1066 ## 0.0.94 — 2016-10-04
1067 * Fixes bustage on Windows due to forbidden directory name
1068
1069 ## 0.0.93 — 2016-10-03
1070 * Rustup to *rustc 1.14.0-nightly (144af3e97 2016-10-02)*
1071 * [`option_map_unwrap_or`] and [`option_map_unwrap_or_else`] are now
1072   allowed by default.
1073 * New lint: [`explicit_into_iter_loop`]
1074
1075 ## 0.0.92 — 2016-09-30
1076 * Rustup to *rustc 1.14.0-nightly (289f3a4ca 2016-09-29)*
1077
1078 ## 0.0.91 — 2016-09-28
1079 * Rustup to *rustc 1.13.0-nightly (d0623cf7b 2016-09-26)*
1080
1081 ## 0.0.90 — 2016-09-09
1082 * Rustup to *rustc 1.13.0-nightly (f1f40f850 2016-09-09)*
1083
1084 ## 0.0.89 — 2016-09-06
1085 * Rustup to *rustc 1.13.0-nightly (cbe4de78e 2016-09-05)*
1086
1087 ## 0.0.88 — 2016-09-04
1088 * Rustup to *rustc 1.13.0-nightly (70598e04f 2016-09-03)*
1089 * The following lints are not new but were only usable through the `clippy`
1090   lint groups: [`filter_next`], [`for_loop_over_option`],
1091   [`for_loop_over_result`] and [`match_overlapping_arm`]. You should now be
1092   able to `#[allow/deny]` them individually and they are available directly
1093   through `cargo clippy`.
1094
1095 ## 0.0.87 — 2016-08-31
1096 * Rustup to *rustc 1.13.0-nightly (eac41469d 2016-08-30)*
1097 * New lints: [`builtin_type_shadow`]
1098 * Fix FP in [`zero_prefixed_literal`] and `0b`/`0o`
1099
1100 ## 0.0.86 — 2016-08-28
1101 * Rustup to *rustc 1.13.0-nightly (a23064af5 2016-08-27)*
1102 * New lints: [`missing_docs_in_private_items`], [`zero_prefixed_literal`]
1103
1104 ## 0.0.85 — 2016-08-19
1105 * Fix ICE with [`useless_attribute`]
1106 * [`useless_attribute`] ignores `unused_imports` on `use` statements
1107
1108 ## 0.0.84 — 2016-08-18
1109 * Rustup to *rustc 1.13.0-nightly (aef6971ca 2016-08-17)*
1110
1111 ## 0.0.83 — 2016-08-17
1112 * Rustup to *rustc 1.12.0-nightly (1bf5fa326 2016-08-16)*
1113 * New lints: [`print_with_newline`], [`useless_attribute`]
1114
1115 ## 0.0.82 — 2016-08-17
1116 * Rustup to *rustc 1.12.0-nightly (197be89f3 2016-08-15)*
1117 * New lint: [`module_inception`]
1118
1119 ## 0.0.81 — 2016-08-14
1120 * Rustup to *rustc 1.12.0-nightly (1deb02ea6 2016-08-12)*
1121 * New lints: [`eval_order_dependence`], [`mixed_case_hex_literals`], [`unseparated_literal_suffix`]
1122 * False positive fix in [`too_many_arguments`]
1123 * Addition of functionality to [`needless_borrow`]
1124 * Suggestions for [`clone_on_copy`]
1125 * Bug fix in [`wrong_self_convention`]
1126 * Doc improvements
1127
1128 ## 0.0.80 — 2016-07-31
1129 * Rustup to *rustc 1.12.0-nightly (1225e122f 2016-07-30)*
1130 * New lints: [`misrefactored_assign_op`], [`serde_api_misuse`]
1131
1132 ## 0.0.79 — 2016-07-10
1133 * Rustup to *rustc 1.12.0-nightly (f93aaf84c 2016-07-09)*
1134 * Major suggestions refactoring
1135
1136 ## 0.0.78 — 2016-07-02
1137 * Rustup to *rustc 1.11.0-nightly (01411937f 2016-07-01)*
1138 * New lints: [`wrong_transmute`], [`double_neg`], [`filter_map`]
1139 * For compatibility, `cargo clippy` does not defines the `clippy` feature
1140   introduced in 0.0.76 anymore
1141 * [`collapsible_if`] now considers `if let`
1142
1143 ## 0.0.77 — 2016-06-21
1144 * Rustup to *rustc 1.11.0-nightly (5522e678b 2016-06-20)*
1145 * New lints: `stutter` and [`iter_nth`]
1146
1147 ## 0.0.76 — 2016-06-10
1148 * Rustup to *rustc 1.11.0-nightly (7d2f75a95 2016-06-09)*
1149 * `cargo clippy` now automatically defines the `clippy` feature
1150 * New lint: [`not_unsafe_ptr_arg_deref`]
1151
1152 ## 0.0.75 — 2016-06-08
1153 * Rustup to *rustc 1.11.0-nightly (763f9234b 2016-06-06)*
1154
1155 ## 0.0.74 — 2016-06-07
1156 * Fix bug with `cargo-clippy` JSON parsing
1157 * Add the `CLIPPY_DISABLE_DOCS_LINKS` environment variable to deactivate the
1158   “for further information visit *lint-link*” message.
1159
1160 ## 0.0.73 — 2016-06-05
1161 * Fix false positives in [`useless_let_if_seq`]
1162
1163 ## 0.0.72 — 2016-06-04
1164 * Fix false positives in [`useless_let_if_seq`]
1165
1166 ## 0.0.71 — 2016-05-31
1167 * Rustup to *rustc 1.11.0-nightly (a967611d8 2016-05-30)*
1168 * New lint: [`useless_let_if_seq`]
1169
1170 ## 0.0.70 — 2016-05-28
1171 * Rustup to *rustc 1.10.0-nightly (7bddce693 2016-05-27)*
1172 * [`invalid_regex`] and [`trivial_regex`] can now warn on `RegexSet::new`,
1173   `RegexBuilder::new` and byte regexes
1174
1175 ## 0.0.69 — 2016-05-20
1176 * Rustup to *rustc 1.10.0-nightly (476fe6eef 2016-05-21)*
1177 * [`used_underscore_binding`] has been made `Allow` temporarily
1178
1179 ## 0.0.68 — 2016-05-17
1180 * Rustup to *rustc 1.10.0-nightly (cd6a40017 2016-05-16)*
1181 * New lint: [`unnecessary_operation`]
1182
1183 ## 0.0.67 — 2016-05-12
1184 * Rustup to *rustc 1.10.0-nightly (22ac88f1a 2016-05-11)*
1185
1186 ## 0.0.66 — 2016-05-11
1187 * New `cargo clippy` subcommand
1188 * New lints: [`assign_op_pattern`], [`assign_ops`], [`needless_borrow`]
1189
1190 ## 0.0.65 — 2016-05-08
1191 * Rustup to *rustc 1.10.0-nightly (62e2b2fb7 2016-05-06)*
1192 * New lints: [`float_arithmetic`], [`integer_arithmetic`]
1193
1194 ## 0.0.64 — 2016-04-26
1195 * Rustup to *rustc 1.10.0-nightly (645dd013a 2016-04-24)*
1196 * New lints: [`temporary_cstring_as_ptr`], [`unsafe_removed_from_name`], and [`mem_forget`]
1197
1198 ## 0.0.63 — 2016-04-08
1199 * Rustup to *rustc 1.9.0-nightly (7979dd608 2016-04-07)*
1200
1201 ## 0.0.62 — 2016-04-07
1202 * Rustup to *rustc 1.9.0-nightly (bf5da36f1 2016-04-06)*
1203
1204 ## 0.0.61 — 2016-04-03
1205 * Rustup to *rustc 1.9.0-nightly (5ab11d72c 2016-04-02)*
1206 * New lint: [`invalid_upcast_comparisons`]
1207
1208 ## 0.0.60 — 2016-04-01
1209 * Rustup to *rustc 1.9.0-nightly (e1195c24b 2016-03-31)*
1210
1211 ## 0.0.59 — 2016-03-31
1212 * Rustup to *rustc 1.9.0-nightly (30a3849f2 2016-03-30)*
1213 * New lints: [`logic_bug`], [`nonminimal_bool`]
1214 * Fixed: [`match_same_arms`] now ignores arms with guards
1215 * Improved: [`useless_vec`] now warns on `for … in vec![…]`
1216
1217 ## 0.0.58 — 2016-03-27
1218 * Rustup to *rustc 1.9.0-nightly (d5a91e695 2016-03-26)*
1219 * New lint: [`doc_markdown`]
1220
1221 ## 0.0.57 — 2016-03-27
1222 * Update to *rustc 1.9.0-nightly (a1e29daf1 2016-03-25)*
1223 * Deprecated lints: [`str_to_string`], [`string_to_string`], [`unstable_as_slice`], [`unstable_as_mut_slice`]
1224 * New lint: [`crosspointer_transmute`]
1225
1226 ## 0.0.56 — 2016-03-23
1227 * Update to *rustc 1.9.0-nightly (0dcc413e4 2016-03-22)*
1228 * New lints: [`many_single_char_names`] and [`similar_names`]
1229
1230 ## 0.0.55 — 2016-03-21
1231 * Update to *rustc 1.9.0-nightly (02310fd31 2016-03-19)*
1232
1233 ## 0.0.54 — 2016-03-16
1234 * Update to *rustc 1.9.0-nightly (c66d2380a 2016-03-15)*
1235
1236 ## 0.0.53 — 2016-03-15
1237 * Add a [configuration file]
1238
1239 ## ~~0.0.52~~
1240
1241 ## 0.0.51 — 2016-03-13
1242 * Add `str` to types considered by [`len_zero`]
1243 * New lints: [`indexing_slicing`]
1244
1245 ## 0.0.50 — 2016-03-11
1246 * Update to *rustc 1.9.0-nightly (c9629d61c 2016-03-10)*
1247
1248 ## 0.0.49 — 2016-03-09
1249 * Update to *rustc 1.9.0-nightly (eabfc160f 2016-03-08)*
1250 * New lints: [`overflow_check_conditional`], [`unused_label`], [`new_without_default`]
1251
1252 ## 0.0.48 — 2016-03-07
1253 * Fixed: ICE in [`needless_range_loop`] with globals
1254
1255 ## 0.0.47 — 2016-03-07
1256 * Update to *rustc 1.9.0-nightly (998a6720b 2016-03-07)*
1257 * New lint: [`redundant_closure_call`]
1258
1259 [`AsMut`]: https://doc.rust-lang.org/std/convert/trait.AsMut.html
1260 [`AsRef`]: https://doc.rust-lang.org/std/convert/trait.AsRef.html
1261 [configuration file]: ./rust-clippy#configuration
1262 [pull3665]: https://github.com/rust-lang/rust-clippy/pull/3665
1263 [adding_lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md
1264
1265 <!-- lint disable no-unused-definitions -->
1266 <!-- begin autogenerated links to lint list -->
1267 [`absurd_extreme_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
1268 [`almost_swapped`]: https://rust-lang.github.io/rust-clippy/master/index.html#almost_swapped
1269 [`approx_constant`]: https://rust-lang.github.io/rust-clippy/master/index.html#approx_constant
1270 [`as_conversions`]: https://rust-lang.github.io/rust-clippy/master/index.html#as_conversions
1271 [`assertions_on_constants`]: https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_constants
1272 [`assign_op_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#assign_op_pattern
1273 [`assign_ops`]: https://rust-lang.github.io/rust-clippy/master/index.html#assign_ops
1274 [`await_holding_lock`]: https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_lock
1275 [`bad_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#bad_bit_mask
1276 [`blacklisted_name`]: https://rust-lang.github.io/rust-clippy/master/index.html#blacklisted_name
1277 [`block_in_if_condition_expr`]: https://rust-lang.github.io/rust-clippy/master/index.html#block_in_if_condition_expr
1278 [`block_in_if_condition_stmt`]: https://rust-lang.github.io/rust-clippy/master/index.html#block_in_if_condition_stmt
1279 [`bool_comparison`]: https://rust-lang.github.io/rust-clippy/master/index.html#bool_comparison
1280 [`borrow_interior_mutable_const`]: https://rust-lang.github.io/rust-clippy/master/index.html#borrow_interior_mutable_const
1281 [`borrowed_box`]: https://rust-lang.github.io/rust-clippy/master/index.html#borrowed_box
1282 [`box_vec`]: https://rust-lang.github.io/rust-clippy/master/index.html#box_vec
1283 [`boxed_local`]: https://rust-lang.github.io/rust-clippy/master/index.html#boxed_local
1284 [`builtin_type_shadow`]: https://rust-lang.github.io/rust-clippy/master/index.html#builtin_type_shadow
1285 [`cargo_common_metadata`]: https://rust-lang.github.io/rust-clippy/master/index.html#cargo_common_metadata
1286 [`cast_lossless`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless
1287 [`cast_possible_truncation`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_truncation
1288 [`cast_possible_wrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap
1289 [`cast_precision_loss`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_precision_loss
1290 [`cast_ptr_alignment`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_ptr_alignment
1291 [`cast_ref_to_mut`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_ref_to_mut
1292 [`cast_sign_loss`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_sign_loss
1293 [`char_lit_as_u8`]: https://rust-lang.github.io/rust-clippy/master/index.html#char_lit_as_u8
1294 [`chars_last_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#chars_last_cmp
1295 [`chars_next_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#chars_next_cmp
1296 [`checked_conversions`]: https://rust-lang.github.io/rust-clippy/master/index.html#checked_conversions
1297 [`clone_double_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#clone_double_ref
1298 [`clone_on_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
1299 [`clone_on_ref_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_ref_ptr
1300 [`cmp_nan`]: https://rust-lang.github.io/rust-clippy/master/index.html#cmp_nan
1301 [`cmp_null`]: https://rust-lang.github.io/rust-clippy/master/index.html#cmp_null
1302 [`cmp_owned`]: https://rust-lang.github.io/rust-clippy/master/index.html#cmp_owned
1303 [`cognitive_complexity`]: https://rust-lang.github.io/rust-clippy/master/index.html#cognitive_complexity
1304 [`collapsible_if`]: https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if
1305 [`comparison_chain`]: https://rust-lang.github.io/rust-clippy/master/index.html#comparison_chain
1306 [`copy_iterator`]: https://rust-lang.github.io/rust-clippy/master/index.html#copy_iterator
1307 [`crosspointer_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#crosspointer_transmute
1308 [`dbg_macro`]: https://rust-lang.github.io/rust-clippy/master/index.html#dbg_macro
1309 [`debug_assert_with_mut_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#debug_assert_with_mut_call
1310 [`decimal_literal_representation`]: https://rust-lang.github.io/rust-clippy/master/index.html#decimal_literal_representation
1311 [`declare_interior_mutable_const`]: https://rust-lang.github.io/rust-clippy/master/index.html#declare_interior_mutable_const
1312 [`default_trait_access`]: https://rust-lang.github.io/rust-clippy/master/index.html#default_trait_access
1313 [`deprecated_cfg_attr`]: https://rust-lang.github.io/rust-clippy/master/index.html#deprecated_cfg_attr
1314 [`deprecated_semver`]: https://rust-lang.github.io/rust-clippy/master/index.html#deprecated_semver
1315 [`deref_addrof`]: https://rust-lang.github.io/rust-clippy/master/index.html#deref_addrof
1316 [`derive_hash_xor_eq`]: https://rust-lang.github.io/rust-clippy/master/index.html#derive_hash_xor_eq
1317 [`diverging_sub_expression`]: https://rust-lang.github.io/rust-clippy/master/index.html#diverging_sub_expression
1318 [`doc_markdown`]: https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
1319 [`double_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_comparisons
1320 [`double_must_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_must_use
1321 [`double_neg`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_neg
1322 [`double_parens`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_parens
1323 [`drop_bounds`]: https://rust-lang.github.io/rust-clippy/master/index.html#drop_bounds
1324 [`drop_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#drop_copy
1325 [`drop_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#drop_ref
1326 [`duplicate_underscore_argument`]: https://rust-lang.github.io/rust-clippy/master/index.html#duplicate_underscore_argument
1327 [`duration_subsec`]: https://rust-lang.github.io/rust-clippy/master/index.html#duration_subsec
1328 [`else_if_without_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#else_if_without_else
1329 [`empty_enum`]: https://rust-lang.github.io/rust-clippy/master/index.html#empty_enum
1330 [`empty_line_after_outer_attr`]: https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr
1331 [`empty_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#empty_loop
1332 [`enum_clike_unportable_variant`]: https://rust-lang.github.io/rust-clippy/master/index.html#enum_clike_unportable_variant
1333 [`enum_glob_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#enum_glob_use
1334 [`enum_variant_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#enum_variant_names
1335 [`eq_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#eq_op
1336 [`erasing_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#erasing_op
1337 [`eval_order_dependence`]: https://rust-lang.github.io/rust-clippy/master/index.html#eval_order_dependence
1338 [`excessive_precision`]: https://rust-lang.github.io/rust-clippy/master/index.html#excessive_precision
1339 [`exit`]: https://rust-lang.github.io/rust-clippy/master/index.html#exit
1340 [`expect_fun_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#expect_fun_call
1341 [`expl_impl_clone_on_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#expl_impl_clone_on_copy
1342 [`explicit_counter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_counter_loop
1343 [`explicit_deref_methods`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_deref_methods
1344 [`explicit_into_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_into_iter_loop
1345 [`explicit_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_iter_loop
1346 [`explicit_write`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_write
1347 [`extend_from_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#extend_from_slice
1348 [`extra_unused_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
1349 [`fallible_impl_from`]: https://rust-lang.github.io/rust-clippy/master/index.html#fallible_impl_from
1350 [`filetype_is_file`]: https://rust-lang.github.io/rust-clippy/master/index.html#filetype_is_file
1351 [`filter_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_map
1352 [`filter_map_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_map_next
1353 [`filter_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_next
1354 [`find_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#find_map
1355 [`flat_map_identity`]: https://rust-lang.github.io/rust-clippy/master/index.html#flat_map_identity
1356 [`float_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#float_arithmetic
1357 [`float_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#float_cmp
1358 [`float_cmp_const`]: https://rust-lang.github.io/rust-clippy/master/index.html#float_cmp_const
1359 [`fn_address_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_address_comparisons
1360 [`fn_params_excessive_bools`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_params_excessive_bools
1361 [`fn_to_numeric_cast`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_to_numeric_cast
1362 [`fn_to_numeric_cast_with_truncation`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_to_numeric_cast_with_truncation
1363 [`for_kv_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#for_kv_map
1364 [`for_loop_over_option`]: https://rust-lang.github.io/rust-clippy/master/index.html#for_loop_over_option
1365 [`for_loop_over_result`]: https://rust-lang.github.io/rust-clippy/master/index.html#for_loop_over_result
1366 [`forget_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#forget_copy
1367 [`forget_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#forget_ref
1368 [`future_not_send`]: https://rust-lang.github.io/rust-clippy/master/index.html#future_not_send
1369 [`get_last_with_len`]: https://rust-lang.github.io/rust-clippy/master/index.html#get_last_with_len
1370 [`get_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#get_unwrap
1371 [`identity_conversion`]: https://rust-lang.github.io/rust-clippy/master/index.html#identity_conversion
1372 [`identity_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#identity_op
1373 [`if_let_mutex`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_let_mutex
1374 [`if_let_redundant_pattern_matching`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_let_redundant_pattern_matching
1375 [`if_let_some_result`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_let_some_result
1376 [`if_not_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_not_else
1377 [`if_same_then_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_same_then_else
1378 [`ifs_same_cond`]: https://rust-lang.github.io/rust-clippy/master/index.html#ifs_same_cond
1379 [`implicit_hasher`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_hasher
1380 [`implicit_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_return
1381 [`implicit_saturating_sub`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_saturating_sub
1382 [`imprecise_flops`]: https://rust-lang.github.io/rust-clippy/master/index.html#imprecise_flops
1383 [`inconsistent_digit_grouping`]: https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_digit_grouping
1384 [`indexing_slicing`]: https://rust-lang.github.io/rust-clippy/master/index.html#indexing_slicing
1385 [`ineffective_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#ineffective_bit_mask
1386 [`inefficient_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#inefficient_to_string
1387 [`infallible_destructuring_match`]: https://rust-lang.github.io/rust-clippy/master/index.html#infallible_destructuring_match
1388 [`infinite_iter`]: https://rust-lang.github.io/rust-clippy/master/index.html#infinite_iter
1389 [`inherent_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#inherent_to_string
1390 [`inherent_to_string_shadow_display`]: https://rust-lang.github.io/rust-clippy/master/index.html#inherent_to_string_shadow_display
1391 [`inline_always`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_always
1392 [`inline_fn_without_body`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_fn_without_body
1393 [`int_plus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#int_plus_one
1394 [`integer_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#integer_arithmetic
1395 [`integer_division`]: https://rust-lang.github.io/rust-clippy/master/index.html#integer_division
1396 [`into_iter_on_array`]: https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_array
1397 [`into_iter_on_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
1398 [`invalid_atomic_ordering`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_atomic_ordering
1399 [`invalid_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_ref
1400 [`invalid_regex`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_regex
1401 [`invalid_upcast_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_upcast_comparisons
1402 [`items_after_statements`]: https://rust-lang.github.io/rust-clippy/master/index.html#items_after_statements
1403 [`iter_cloned_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_cloned_collect
1404 [`iter_next_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_next_loop
1405 [`iter_nth`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_nth
1406 [`iter_nth_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_nth_zero
1407 [`iter_skip_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_skip_next
1408 [`iterator_step_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#iterator_step_by_zero
1409 [`just_underscores_and_digits`]: https://rust-lang.github.io/rust-clippy/master/index.html#just_underscores_and_digits
1410 [`large_const_arrays`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_const_arrays
1411 [`large_digit_groups`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups
1412 [`large_enum_variant`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
1413 [`large_stack_arrays`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_stack_arrays
1414 [`len_without_is_empty`]: https://rust-lang.github.io/rust-clippy/master/index.html#len_without_is_empty
1415 [`len_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#len_zero
1416 [`let_and_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return
1417 [`let_underscore_lock`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_lock
1418 [`let_underscore_must_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_must_use
1419 [`let_unit_value`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
1420 [`linkedlist`]: https://rust-lang.github.io/rust-clippy/master/index.html#linkedlist
1421 [`logic_bug`]: https://rust-lang.github.io/rust-clippy/master/index.html#logic_bug
1422 [`lossy_float_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#lossy_float_literal
1423 [`macro_use_imports`]: https://rust-lang.github.io/rust-clippy/master/index.html#macro_use_imports
1424 [`main_recursion`]: https://rust-lang.github.io/rust-clippy/master/index.html#main_recursion
1425 [`manual_memcpy`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_memcpy
1426 [`manual_saturating_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_saturating_arithmetic
1427 [`manual_swap`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_swap
1428 [`many_single_char_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names
1429 [`map_clone`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_clone
1430 [`map_entry`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_entry
1431 [`map_flatten`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_flatten
1432 [`match_as_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_as_ref
1433 [`match_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_bool
1434 [`match_on_vec_items`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_on_vec_items
1435 [`match_overlapping_arm`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_overlapping_arm
1436 [`match_ref_pats`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_ref_pats
1437 [`match_same_arms`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms
1438 [`match_single_binding`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_single_binding
1439 [`match_wild_err_arm`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_wild_err_arm
1440 [`maybe_infinite_iter`]: https://rust-lang.github.io/rust-clippy/master/index.html#maybe_infinite_iter
1441 [`mem_discriminant_non_enum`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_discriminant_non_enum
1442 [`mem_forget`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_forget
1443 [`mem_replace_option_with_none`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_option_with_none
1444 [`mem_replace_with_default`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_with_default
1445 [`mem_replace_with_uninit`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_with_uninit
1446 [`min_max`]: https://rust-lang.github.io/rust-clippy/master/index.html#min_max
1447 [`misaligned_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#misaligned_transmute
1448 [`mismatched_target_os`]: https://rust-lang.github.io/rust-clippy/master/index.html#mismatched_target_os
1449 [`misrefactored_assign_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#misrefactored_assign_op
1450 [`missing_const_for_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_const_for_fn
1451 [`missing_docs_in_private_items`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_docs_in_private_items
1452 [`missing_errors_doc`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_errors_doc
1453 [`missing_inline_in_public_items`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_inline_in_public_items
1454 [`missing_safety_doc`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
1455 [`mistyped_literal_suffixes`]: https://rust-lang.github.io/rust-clippy/master/index.html#mistyped_literal_suffixes
1456 [`mixed_case_hex_literals`]: https://rust-lang.github.io/rust-clippy/master/index.html#mixed_case_hex_literals
1457 [`module_inception`]: https://rust-lang.github.io/rust-clippy/master/index.html#module_inception
1458 [`module_name_repetitions`]: https://rust-lang.github.io/rust-clippy/master/index.html#module_name_repetitions
1459 [`modulo_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#modulo_arithmetic
1460 [`modulo_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#modulo_one
1461 [`multiple_crate_versions`]: https://rust-lang.github.io/rust-clippy/master/index.html#multiple_crate_versions
1462 [`multiple_inherent_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#multiple_inherent_impl
1463 [`must_use_candidate`]: https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate
1464 [`must_use_unit`]: https://rust-lang.github.io/rust-clippy/master/index.html#must_use_unit
1465 [`mut_from_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#mut_from_ref
1466 [`mut_mut`]: https://rust-lang.github.io/rust-clippy/master/index.html#mut_mut
1467 [`mut_range_bound`]: https://rust-lang.github.io/rust-clippy/master/index.html#mut_range_bound
1468 [`mutable_key_type`]: https://rust-lang.github.io/rust-clippy/master/index.html#mutable_key_type
1469 [`mutex_atomic`]: https://rust-lang.github.io/rust-clippy/master/index.html#mutex_atomic
1470 [`mutex_integer`]: https://rust-lang.github.io/rust-clippy/master/index.html#mutex_integer
1471 [`naive_bytecount`]: https://rust-lang.github.io/rust-clippy/master/index.html#naive_bytecount
1472 [`needless_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_bool
1473 [`needless_borrow`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
1474 [`needless_borrowed_reference`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference
1475 [`needless_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_collect
1476 [`needless_continue`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_continue
1477 [`needless_doctest_main`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_doctest_main
1478 [`needless_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
1479 [`needless_pass_by_value`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_pass_by_value
1480 [`needless_range_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_range_loop
1481 [`needless_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
1482 [`needless_update`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_update
1483 [`neg_cmp_op_on_partial_ord`]: https://rust-lang.github.io/rust-clippy/master/index.html#neg_cmp_op_on_partial_ord
1484 [`neg_multiply`]: https://rust-lang.github.io/rust-clippy/master/index.html#neg_multiply
1485 [`never_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#never_loop
1486 [`new_ret_no_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#new_ret_no_self
1487 [`new_without_default`]: https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
1488 [`no_effect`]: https://rust-lang.github.io/rust-clippy/master/index.html#no_effect
1489 [`non_ascii_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#non_ascii_literal
1490 [`nonminimal_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool
1491 [`nonsensical_open_options`]: https://rust-lang.github.io/rust-clippy/master/index.html#nonsensical_open_options
1492 [`not_unsafe_ptr_arg_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#not_unsafe_ptr_arg_deref
1493 [`ok_expect`]: https://rust-lang.github.io/rust-clippy/master/index.html#ok_expect
1494 [`op_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#op_ref
1495 [`option_and_then_some`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_and_then_some
1496 [`option_as_ref_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_as_ref_deref
1497 [`option_env_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_env_unwrap
1498 [`option_expect_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_expect_used
1499 [`option_map_or_none`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_map_or_none
1500 [`option_map_unit_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_map_unit_fn
1501 [`option_map_unwrap_or`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_map_unwrap_or
1502 [`option_map_unwrap_or_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_map_unwrap_or_else
1503 [`option_option`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_option
1504 [`option_unwrap_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_unwrap_used
1505 [`or_fun_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call
1506 [`out_of_bounds_indexing`]: https://rust-lang.github.io/rust-clippy/master/index.html#out_of_bounds_indexing
1507 [`overflow_check_conditional`]: https://rust-lang.github.io/rust-clippy/master/index.html#overflow_check_conditional
1508 [`panic`]: https://rust-lang.github.io/rust-clippy/master/index.html#panic
1509 [`panic_params`]: https://rust-lang.github.io/rust-clippy/master/index.html#panic_params
1510 [`panicking_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#panicking_unwrap
1511 [`partialeq_ne_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#partialeq_ne_impl
1512 [`path_buf_push_overwrite`]: https://rust-lang.github.io/rust-clippy/master/index.html#path_buf_push_overwrite
1513 [`possible_missing_comma`]: https://rust-lang.github.io/rust-clippy/master/index.html#possible_missing_comma
1514 [`precedence`]: https://rust-lang.github.io/rust-clippy/master/index.html#precedence
1515 [`print_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#print_literal
1516 [`print_stdout`]: https://rust-lang.github.io/rust-clippy/master/index.html#print_stdout
1517 [`print_with_newline`]: https://rust-lang.github.io/rust-clippy/master/index.html#print_with_newline
1518 [`println_empty_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#println_empty_string
1519 [`ptr_arg`]: https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
1520 [`ptr_offset_with_cast`]: https://rust-lang.github.io/rust-clippy/master/index.html#ptr_offset_with_cast
1521 [`pub_enum_variant_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#pub_enum_variant_names
1522 [`question_mark`]: https://rust-lang.github.io/rust-clippy/master/index.html#question_mark
1523 [`range_minus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_minus_one
1524 [`range_plus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_plus_one
1525 [`range_step_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_step_by_zero
1526 [`range_zip_with_len`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_zip_with_len
1527 [`redundant_allocation`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_allocation
1528 [`redundant_clone`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
1529 [`redundant_closure`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure
1530 [`redundant_closure_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call
1531 [`redundant_closure_for_method_calls`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_for_method_calls
1532 [`redundant_field_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
1533 [`redundant_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern
1534 [`redundant_pattern_matching`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
1535 [`redundant_pub_crate`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pub_crate
1536 [`redundant_static_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_static_lifetimes
1537 [`ref_in_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#ref_in_deref
1538 [`regex_macro`]: https://rust-lang.github.io/rust-clippy/master/index.html#regex_macro
1539 [`replace_consts`]: https://rust-lang.github.io/rust-clippy/master/index.html#replace_consts
1540 [`rest_pat_in_fully_bound_structs`]: https://rust-lang.github.io/rust-clippy/master/index.html#rest_pat_in_fully_bound_structs
1541 [`result_expect_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_expect_used
1542 [`result_map_or_into_option`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_map_or_into_option
1543 [`result_map_unit_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_map_unit_fn
1544 [`result_map_unwrap_or_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_map_unwrap_or_else
1545 [`result_unwrap_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_unwrap_used
1546 [`reverse_range_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#reverse_range_loop
1547 [`same_functions_in_if_condition`]: https://rust-lang.github.io/rust-clippy/master/index.html#same_functions_in_if_condition
1548 [`search_is_some`]: https://rust-lang.github.io/rust-clippy/master/index.html#search_is_some
1549 [`serde_api_misuse`]: https://rust-lang.github.io/rust-clippy/master/index.html#serde_api_misuse
1550 [`shadow_reuse`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_reuse
1551 [`shadow_same`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_same
1552 [`shadow_unrelated`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_unrelated
1553 [`short_circuit_statement`]: https://rust-lang.github.io/rust-clippy/master/index.html#short_circuit_statement
1554 [`should_assert_eq`]: https://rust-lang.github.io/rust-clippy/master/index.html#should_assert_eq
1555 [`should_implement_trait`]: https://rust-lang.github.io/rust-clippy/master/index.html#should_implement_trait
1556 [`similar_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#similar_names
1557 [`single_char_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern
1558 [`single_component_path_imports`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports
1559 [`single_match`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_match
1560 [`single_match_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_match_else
1561 [`skip_while_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#skip_while_next
1562 [`slow_vector_initialization`]: https://rust-lang.github.io/rust-clippy/master/index.html#slow_vector_initialization
1563 [`str_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#str_to_string
1564 [`string_add`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_add
1565 [`string_add_assign`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_add_assign
1566 [`string_extend_chars`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_extend_chars
1567 [`string_lit_as_bytes`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_lit_as_bytes
1568 [`string_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_to_string
1569 [`struct_excessive_bools`]: https://rust-lang.github.io/rust-clippy/master/index.html#struct_excessive_bools
1570 [`suboptimal_flops`]: https://rust-lang.github.io/rust-clippy/master/index.html#suboptimal_flops
1571 [`suspicious_arithmetic_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_arithmetic_impl
1572 [`suspicious_assignment_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_assignment_formatting
1573 [`suspicious_else_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_else_formatting
1574 [`suspicious_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_map
1575 [`suspicious_op_assign_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_op_assign_impl
1576 [`suspicious_unary_op_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_unary_op_formatting
1577 [`tabs_in_doc_comments`]: https://rust-lang.github.io/rust-clippy/master/index.html#tabs_in_doc_comments
1578 [`temporary_assignment`]: https://rust-lang.github.io/rust-clippy/master/index.html#temporary_assignment
1579 [`temporary_cstring_as_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#temporary_cstring_as_ptr
1580 [`to_digit_is_some`]: https://rust-lang.github.io/rust-clippy/master/index.html#to_digit_is_some
1581 [`todo`]: https://rust-lang.github.io/rust-clippy/master/index.html#todo
1582 [`too_many_arguments`]: https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
1583 [`too_many_lines`]: https://rust-lang.github.io/rust-clippy/master/index.html#too_many_lines
1584 [`toplevel_ref_arg`]: https://rust-lang.github.io/rust-clippy/master/index.html#toplevel_ref_arg
1585 [`transmute_bytes_to_str`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_bytes_to_str
1586 [`transmute_float_to_int`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_float_to_int
1587 [`transmute_int_to_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_bool
1588 [`transmute_int_to_char`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_char
1589 [`transmute_int_to_float`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float
1590 [`transmute_ptr_to_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_ptr_to_ptr
1591 [`transmute_ptr_to_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_ptr_to_ref
1592 [`transmuting_null`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmuting_null
1593 [`trivial_regex`]: https://rust-lang.github.io/rust-clippy/master/index.html#trivial_regex
1594 [`trivially_copy_pass_by_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#trivially_copy_pass_by_ref
1595 [`try_err`]: https://rust-lang.github.io/rust-clippy/master/index.html#try_err
1596 [`type_complexity`]: https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
1597 [`type_repetition_in_bounds`]: https://rust-lang.github.io/rust-clippy/master/index.html#type_repetition_in_bounds
1598 [`unicode_not_nfc`]: https://rust-lang.github.io/rust-clippy/master/index.html#unicode_not_nfc
1599 [`unimplemented`]: https://rust-lang.github.io/rust-clippy/master/index.html#unimplemented
1600 [`uninit_assumed_init`]: https://rust-lang.github.io/rust-clippy/master/index.html#uninit_assumed_init
1601 [`unit_arg`]: https://rust-lang.github.io/rust-clippy/master/index.html#unit_arg
1602 [`unit_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#unit_cmp
1603 [`unknown_clippy_lints`]: https://rust-lang.github.io/rust-clippy/master/index.html#unknown_clippy_lints
1604 [`unnecessary_cast`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
1605 [`unnecessary_filter_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_filter_map
1606 [`unnecessary_fold`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fold
1607 [`unnecessary_mut_passed`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_mut_passed
1608 [`unnecessary_operation`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_operation
1609 [`unnecessary_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_unwrap
1610 [`unneeded_field_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#unneeded_field_pattern
1611 [`unneeded_wildcard_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#unneeded_wildcard_pattern
1612 [`unreachable`]: https://rust-lang.github.io/rust-clippy/master/index.html#unreachable
1613 [`unreadable_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#unreadable_literal
1614 [`unsafe_derive_deserialize`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsafe_derive_deserialize
1615 [`unsafe_removed_from_name`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsafe_removed_from_name
1616 [`unsafe_vector_initialization`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsafe_vector_initialization
1617 [`unseparated_literal_suffix`]: https://rust-lang.github.io/rust-clippy/master/index.html#unseparated_literal_suffix
1618 [`unsound_collection_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsound_collection_transmute
1619 [`unstable_as_mut_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#unstable_as_mut_slice
1620 [`unstable_as_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#unstable_as_slice
1621 [`unused_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_collect
1622 [`unused_io_amount`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_io_amount
1623 [`unused_label`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_label
1624 [`unused_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_self
1625 [`unused_unit`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_unit
1626 [`use_debug`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_debug
1627 [`use_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_self
1628 [`used_underscore_binding`]: https://rust-lang.github.io/rust-clippy/master/index.html#used_underscore_binding
1629 [`useless_asref`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_asref
1630 [`useless_attribute`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_attribute
1631 [`useless_format`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
1632 [`useless_let_if_seq`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_let_if_seq
1633 [`useless_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_transmute
1634 [`useless_vec`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec
1635 [`vec_box`]: https://rust-lang.github.io/rust-clippy/master/index.html#vec_box
1636 [`verbose_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#verbose_bit_mask
1637 [`verbose_file_reads`]: https://rust-lang.github.io/rust-clippy/master/index.html#verbose_file_reads
1638 [`vtable_address_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#vtable_address_comparisons
1639 [`while_immutable_condition`]: https://rust-lang.github.io/rust-clippy/master/index.html#while_immutable_condition
1640 [`while_let_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#while_let_loop
1641 [`while_let_on_iterator`]: https://rust-lang.github.io/rust-clippy/master/index.html#while_let_on_iterator
1642 [`wildcard_dependencies`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_dependencies
1643 [`wildcard_enum_match_arm`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_enum_match_arm
1644 [`wildcard_imports`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports
1645 [`wildcard_in_or_patterns`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_in_or_patterns
1646 [`write_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#write_literal
1647 [`write_with_newline`]: https://rust-lang.github.io/rust-clippy/master/index.html#write_with_newline
1648 [`writeln_empty_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#writeln_empty_string
1649 [`wrong_pub_self_convention`]: https://rust-lang.github.io/rust-clippy/master/index.html#wrong_pub_self_convention
1650 [`wrong_self_convention`]: https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
1651 [`wrong_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#wrong_transmute
1652 [`zero_divided_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_divided_by_zero
1653 [`zero_prefixed_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_prefixed_literal
1654 [`zero_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_ptr
1655 [`zero_width_space`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_width_space
1656 [`zst_offset`]: https://rust-lang.github.io/rust-clippy/master/index.html#zst_offset
1657 <!-- end autogenerated links to lint list -->