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