@@ -23,6 +23,7 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
23
23
LintId :: of( bool_assert_comparison:: BOOL_ASSERT_COMPARISON ) ,
24
24
LintId :: of( booleans:: LOGIC_BUG ) ,
25
25
LintId :: of( booleans:: NONMINIMAL_BOOL ) ,
26
+ LintId :: of( casts:: CAST_ENUM_CONSTRUCTOR ) ,
26
27
LintId :: of( casts:: CAST_ENUM_TRUNCATION ) ,
27
28
LintId :: of( casts:: CAST_REF_TO_MUT ) ,
28
29
LintId :: of( casts:: CAST_SLICE_DIFFERENT_SIZES ) ,
@@ -166,7 +167,6 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
166
167
LintId :: of( methods:: ITER_NTH_ZERO ) ,
167
168
LintId :: of( methods:: ITER_OVEREAGER_CLONED ) ,
168
169
LintId :: of( methods:: ITER_SKIP_NEXT ) ,
169
- LintId :: of( methods:: ITER_WITH_DRAIN ) ,
170
170
LintId :: of( methods:: MANUAL_FILTER_MAP ) ,
171
171
LintId :: of( methods:: MANUAL_FIND_MAP ) ,
172
172
LintId :: of( methods:: MANUAL_SATURATING_ARITHMETIC ) ,
@@ -182,6 +182,7 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
182
182
LintId :: of( methods:: OPTION_FILTER_MAP ) ,
183
183
LintId :: of( methods:: OPTION_MAP_OR_NONE ) ,
184
184
LintId :: of( methods:: OR_FUN_CALL ) ,
185
+ LintId :: of( methods:: OR_THEN_UNWRAP ) ,
185
186
LintId :: of( methods:: RESULT_MAP_OR_INTO_OPTION ) ,
186
187
LintId :: of( methods:: SEARCH_IS_SOME ) ,
187
188
LintId :: of( methods:: SHOULD_IMPLEMENT_TRAIT ) ,
@@ -290,7 +291,6 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
290
291
LintId :: of( transmute:: UNSOUND_COLLECTION_TRANSMUTE ) ,
291
292
LintId :: of( transmute:: WRONG_TRANSMUTE ) ,
292
293
LintId :: of( transmuting_null:: TRANSMUTING_NULL ) ,
293
- LintId :: of( try_err:: TRY_ERR ) ,
294
294
LintId :: of( types:: BORROWED_BOX ) ,
295
295
LintId :: of( types:: BOX_COLLECTION ) ,
296
296
LintId :: of( types:: REDUNDANT_ALLOCATION ) ,
0 commit comments