Fix Clippy version in derive_partial_eq_without_eq lint

It was first added to Rust in https://github.com/rust-lang/rust/pull/97248 which missed 1.62 just by few days.
This commit is contained in:
Mateusz Mikuła 2022-07-11 17:01:46 +02:00 committed by GitHub
parent 8a62b6f523
commit c8d32e53a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -189,7 +189,7 @@ declare_clippy_lint! {
/// i_am_eq_too: Vec<String>,
/// }
/// ```
#[clippy::version = "1.62.0"]
#[clippy::version = "1.63.0"]
pub DERIVE_PARTIAL_EQ_WITHOUT_EQ,
style,
"deriving `PartialEq` on a type that can implement `Eq`, without implementing `Eq`"