@@ -16,6 +16,10 @@ macro_rules! declare_with_version {
1616declare_with_version ! { DEPRECATED ( DEPRECATED_VERSION ) = [
1717 #[ clippy:: version = "1.30.0" ]
1818 ( "clippy::assign_ops" , "compound operators are harmless and linting on them is not in scope for clippy" ) ,
19+ #[ clippy:: version = "1.90.0" ]
20+ ( "clippy::cognitive_complexity" , "`excessive_nesting` and `too_many_lines` lints allow for finer-grain controls" ) ,
21+ #[ clippy:: version = "1.35.0" ]
22+ ( "clippy::cyclomatic_complexity" , "`excessive_nesting` and `too_many_lines` lints allow for finer-grain controls" ) ,
1923 #[ clippy:: version = "pre 1.29.0" ]
2024 ( "clippy::extend_from_slice" , "`Vec::extend_from_slice` is no longer faster than `Vec::extend` due to specialization" ) ,
2125 #[ clippy:: version = "1.86.0" ]
@@ -69,8 +73,6 @@ declare_with_version! { RENAMED(RENAMED_VERSION) = [
6973 #[ clippy:: version = "" ]
7074 ( "clippy::const_static_lifetime" , "clippy::redundant_static_lifetimes" ) ,
7175 #[ clippy:: version = "" ]
72- ( "clippy::cyclomatic_complexity" , "clippy::cognitive_complexity" ) ,
73- #[ clippy:: version = "" ]
7476 ( "clippy::derive_hash_xor_eq" , "clippy::derived_hash_with_manual_eq" ) ,
7577 #[ clippy:: version = "" ]
7678 ( "clippy::disallowed_method" , "clippy::disallowed_methods" ) ,
0 commit comments