@@ -152,6 +152,8 @@ Current stable, released 2023-03-09
152
152
153
153
* ` SYSROOT ` and ` --sysroot ` can now be set at the same time
154
154
[ #10149 ] ( https://github.com/rust-lang/rust-clippy/pull/10149 )
155
+ * Fix error when providing an ` array-size-threshold ` in ` clippy.toml `
156
+ [ #10423 ] ( https://github.com/rust-lang/rust-clippy/pull/10423 )
155
157
156
158
## Rust 1.67
157
159
@@ -186,8 +188,6 @@ Released 2023-01-26
186
188
187
189
### Moves and Deprecations
188
190
189
- * Moved [ ` uninlined_format_args ` ] to ` style ` (Now warn-by-default)
190
- [ #9865 ] ( https://github.com/rust-lang/rust-clippy/pull/9865 )
191
191
* Moved [ ` needless_collect ` ] to ` nursery ` (Now allow-by-default)
192
192
[ #9705 ] ( https://github.com/rust-lang/rust-clippy/pull/9705 )
193
193
* Moved [ ` or_fun_call ` ] to ` nursery ` (Now allow-by-default)
@@ -423,7 +423,7 @@ Released 2022-12-15
423
423
[ #9490 ] ( https://github.com/rust-lang/rust-clippy/pull/9490 )
424
424
* [ ` almost_complete_letter_range ` ] : No longer lints in external macros
425
425
[ #9467 ] ( https://github.com/rust-lang/rust-clippy/pull/9467 )
426
- * [ ` drop_copy ` ] : No longer lints on idiomatic cases in match arms
426
+ * [ ` drop_copy ` ] : No longer lints on idiomatic cases in match arms
427
427
[ #9491 ] ( https://github.com/rust-lang/rust-clippy/pull/9491 )
428
428
* [ ` question_mark ` ] : No longer lints in const context
429
429
[ #9487 ] ( https://github.com/rust-lang/rust-clippy/pull/9487 )
@@ -4382,6 +4382,7 @@ Released 2018-09-13
4382
4382
<!-- begin autogenerated links to lint list -->
4383
4383
[ `absurd_extreme_comparisons` ] : https://rust-lang.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
4384
4384
[ `alloc_instead_of_core` ] : https://rust-lang.github.io/rust-clippy/master/index.html#alloc_instead_of_core
4385
+ [ `allow_attributes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributes
4385
4386
[ `allow_attributes_without_reason` ] : https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributes_without_reason
4386
4387
[ `almost_complete_letter_range` ] : https://rust-lang.github.io/rust-clippy/master/index.html#almost_complete_letter_range
4387
4388
[ `almost_complete_range` ] : https://rust-lang.github.io/rust-clippy/master/index.html#almost_complete_range
@@ -4661,6 +4662,7 @@ Released 2018-09-13
4661
4662
[ `manual_instant_elapsed` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_instant_elapsed
4662
4663
[ `manual_is_ascii_check` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_ascii_check
4663
4664
[ `manual_let_else` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else
4665
+ [ `manual_main_separator_str` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_main_separator_str
4664
4666
[ `manual_map` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_map
4665
4667
[ `manual_memcpy` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_memcpy
4666
4668
[ `manual_non_exhaustive` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_non_exhaustive
@@ -4985,6 +4987,7 @@ Released 2018-09-13
4985
4987
[ `unnecessary_safety_doc` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_safety_doc
4986
4988
[ `unnecessary_self_imports` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_self_imports
4987
4989
[ `unnecessary_sort_by` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_sort_by
4990
+ [ `unnecessary_struct_initialization` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_struct_initialization
4988
4991
[ `unnecessary_to_owned` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_to_owned
4989
4992
[ `unnecessary_unwrap` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_unwrap
4990
4993
[ `unnecessary_wraps` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_wraps
0 commit comments