Update version attribute for 1.66 lints

This commit is contained in:
xFrednet 2022-12-13 18:29:22 +01:00
parent 12074808c7
commit 2532c56d86
No known key found for this signature in database
GPG Key ID: F5C59D0E669E5302
6 changed files with 6 additions and 6 deletions

View File

@ -30,7 +30,7 @@
/// ```rust
/// let x: Box<String> = Box::default();
/// ```
#[clippy::version = "1.65.0"]
#[clippy::version = "1.66.0"]
pub BOX_DEFAULT,
perf,
"Using Box::new(T::default()) instead of Box::default()"

View File

@ -641,7 +641,7 @@
/// ```rust,ignore
/// let _: = 0_u64;
/// ```
#[clippy::version = "1.64.0"]
#[clippy::version = "1.66.0"]
pub CAST_NAN_TO_INT,
suspicious,
"casting a known floating-point NaN into an integer"

View File

@ -47,7 +47,7 @@
/// value: usize,
/// }
/// ```
#[clippy::version = "1.65.0"]
#[clippy::version = "1.66.0"]
pub DISALLOWED_MACROS,
style,
"use of a disallowed macro"

View File

@ -122,7 +122,7 @@
///
/// If a format string contains a numbered argument that cannot be inlined
/// nothing will be suggested, e.g. `println!("{0}={1}", var, 1+2)`.
#[clippy::version = "1.65.0"]
#[clippy::version = "1.66.0"]
pub UNINLINED_FORMAT_ARGS,
style,
"using non-inlined variables in `format!` calls"

View File

@ -31,7 +31,7 @@
///
/// u = u.saturating_add(1);
/// ```
#[clippy::version = "1.65.0"]
#[clippy::version = "1.66.0"]
pub IMPLICIT_SATURATING_ADD,
style,
"Perform saturating addition instead of implicitly checking max bound of data type"

View File

@ -3059,7 +3059,7 @@
/// let map: HashMap<u32, u32> = HashMap::new();
/// let values = map.values().collect::<Vec<_>>();
/// ```
#[clippy::version = "1.65.0"]
#[clippy::version = "1.66.0"]
pub ITER_KV_MAP,
complexity,
"iterating on map using `iter` when `keys` or `values` would do"