File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ declare_clippy_lint! {
34
34
/// _ = opt.as_slice();
35
35
/// _ = opt.as_slice();
36
36
/// ```
37
- #[ clippy:: version = "1.85 .0" ]
37
+ #[ clippy:: version = "1.86 .0" ]
38
38
pub MANUAL_OPTION_AS_SLICE ,
39
39
complexity,
40
40
"manual `Option::as_slice`"
Original file line number Diff line number Diff line change @@ -4283,7 +4283,7 @@ declare_clippy_lint! {
4283
4283
/// ```no_run
4284
4284
/// let last_arg = "echo hello world".split(' ').next_back();
4285
4285
/// ```
4286
- #[ clippy:: version = "1.85 .0" ]
4286
+ #[ clippy:: version = "1.86 .0" ]
4287
4287
pub DOUBLE_ENDED_ITERATOR_LAST ,
4288
4288
perf,
4289
4289
"using `Iterator::last` on a `DoubleEndedIterator`"
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ declare_clippy_lint! {
37
37
/// static FOO: std::sync::LazyLock<String> = std::sync::LazyLock::new(|| "FOO".to_lowercase());
38
38
/// static BAR: std::sync::LazyLock<String> = std::sync::LazyLock::new(|| "BAR".to_lowercase());
39
39
/// ```
40
- #[ clippy:: version = "1.81 .0" ]
40
+ #[ clippy:: version = "1.86 .0" ]
41
41
pub NON_STD_LAZY_STATICS ,
42
42
pedantic,
43
43
"lazy static that could be replaced by `std::sync::LazyLock`"
You can’t perform that action at this time.
0 commit comments