diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2024-03-21 15:41:12 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-21 15:41:12 +0000 |
| commit | 87b93520a82719c1f2f3aba35dd432ededbcff99 (patch) | |
| tree | a38f2f27a8eb69c62cec2afca0d6dd75817fdc8d | |
| parent | 32799a55e24ef2fb3bb02ed03b9b43d310cc6122 (diff) | |
| download | rust-87b93520a82719c1f2f3aba35dd432ededbcff99.tar.gz rust-87b93520a82719c1f2f3aba35dd432ededbcff99.zip | |
Correct version for incompatible_msrv
Unsure what happened here Probably what caused https://github.com/rust-lang/blog.rust-lang.org/issues/1277
| -rw-r--r-- | clippy_lints/src/incompatible_msrv.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/incompatible_msrv.rs b/clippy_lints/src/incompatible_msrv.rs index cd000fcd184..23bcd19ddd3 100644 --- a/clippy_lints/src/incompatible_msrv.rs +++ b/clippy_lints/src/incompatible_msrv.rs @@ -33,7 +33,7 @@ declare_clippy_lint! { /// /// To fix this problem, either increase your MSRV or use another item /// available in your current MSRV. - #[clippy::version = "1.77.0"] + #[clippy::version = "1.78.0"] pub INCOMPATIBLE_MSRV, suspicious, "ensures that all items used in the crate are available for the current MSRV" |
