File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ declare_clippy_lint! {
3434 /// _ = opt.as_slice();
3535 /// _ = opt.as_slice();
3636 /// ```
37- #[ clippy:: version = "1.85 .0" ]
37+ #[ clippy:: version = "1.86 .0" ]
3838 pub MANUAL_OPTION_AS_SLICE ,
3939 complexity,
4040 "manual `Option::as_slice`"
Original file line number Diff line number Diff line change @@ -4283,7 +4283,7 @@ declare_clippy_lint! {
42834283 /// ```no_run
42844284 /// let last_arg = "echo hello world".split(' ').next_back();
42854285 /// ```
4286- #[ clippy:: version = "1.85 .0" ]
4286+ #[ clippy:: version = "1.86 .0" ]
42874287 pub DOUBLE_ENDED_ITERATOR_LAST ,
42884288 perf,
42894289 "using `Iterator::last` on a `DoubleEndedIterator`"
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ declare_clippy_lint! {
3737 /// static FOO: std::sync::LazyLock<String> = std::sync::LazyLock::new(|| "FOO".to_lowercase());
3838 /// static BAR: std::sync::LazyLock<String> = std::sync::LazyLock::new(|| "BAR".to_lowercase());
3939 /// ```
40- #[ clippy:: version = "1.81 .0" ]
40+ #[ clippy:: version = "1.86 .0" ]
4141 pub NON_STD_LAZY_STATICS ,
4242 pedantic,
4343 "lazy static that could be replaced by `std::sync::LazyLock`"
You can’t perform that action at this time.
0 commit comments