Update version attribute for 1.75 lints

This commit is contained in:
xFrednet 2023-12-26 16:00:53 +01:00
parent 99c783843d
commit 8990153997
No known key found for this signature in database
GPG Key ID: F5C59D0E669E5302
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ declare_clippy_lint! {
/// }
/// }
/// ```
#[clippy::version = "1.74.0"]
#[clippy::version = "1.75.0"]
pub ITER_WITHOUT_INTO_ITER,
pedantic,
"implementing `iter(_mut)` without an associated `IntoIterator for (&|&mut) Type` impl"
@ -101,7 +101,7 @@ declare_clippy_lint! {
/// }
/// }
/// ```
#[clippy::version = "1.74.0"]
#[clippy::version = "1.75.0"]
pub INTO_ITER_WITHOUT_ITER,
pedantic,
"implementing `IntoIterator for (&|&mut) Type` without an inherent `iter(_mut)` method"

View File

@ -40,7 +40,7 @@ declare_clippy_lint! {
///
/// let hash = s.hash_one(&value);
/// ```
#[clippy::version = "1.74.0"]
#[clippy::version = "1.75.0"]
pub MANUAL_HASH_ONE,
complexity,
"manual implementations of `BuildHasher::hash_one`"