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