@@ -23,6 +23,7 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
2323 LintId :: of( bool_assert_comparison:: BOOL_ASSERT_COMPARISON ) ,
2424 LintId :: of( booleans:: LOGIC_BUG ) ,
2525 LintId :: of( booleans:: NONMINIMAL_BOOL ) ,
26+ LintId :: of( casts:: CAST_ENUM_CONSTRUCTOR ) ,
2627 LintId :: of( casts:: CAST_ENUM_TRUNCATION ) ,
2728 LintId :: of( casts:: CAST_REF_TO_MUT ) ,
2829 LintId :: of( casts:: CAST_SLICE_DIFFERENT_SIZES ) ,
@@ -166,7 +167,6 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
166167 LintId :: of( methods:: ITER_NTH_ZERO ) ,
167168 LintId :: of( methods:: ITER_OVEREAGER_CLONED ) ,
168169 LintId :: of( methods:: ITER_SKIP_NEXT ) ,
169- LintId :: of( methods:: ITER_WITH_DRAIN ) ,
170170 LintId :: of( methods:: MANUAL_FILTER_MAP ) ,
171171 LintId :: of( methods:: MANUAL_FIND_MAP ) ,
172172 LintId :: of( methods:: MANUAL_SATURATING_ARITHMETIC ) ,
@@ -182,6 +182,7 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
182182 LintId :: of( methods:: OPTION_FILTER_MAP ) ,
183183 LintId :: of( methods:: OPTION_MAP_OR_NONE ) ,
184184 LintId :: of( methods:: OR_FUN_CALL ) ,
185+ LintId :: of( methods:: OR_THEN_UNWRAP ) ,
185186 LintId :: of( methods:: RESULT_MAP_OR_INTO_OPTION ) ,
186187 LintId :: of( methods:: SEARCH_IS_SOME ) ,
187188 LintId :: of( methods:: SHOULD_IMPLEMENT_TRAIT ) ,
@@ -290,7 +291,6 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
290291 LintId :: of( transmute:: UNSOUND_COLLECTION_TRANSMUTE ) ,
291292 LintId :: of( transmute:: WRONG_TRANSMUTE ) ,
292293 LintId :: of( transmuting_null:: TRANSMUTING_NULL ) ,
293- LintId :: of( try_err:: TRY_ERR ) ,
294294 LintId :: of( types:: BORROWED_BOX ) ,
295295 LintId :: of( types:: BOX_COLLECTION ) ,
296296 LintId :: of( types:: REDUNDANT_ALLOCATION ) ,
0 commit comments