Upgrade to Rust 1.83 (#9511)

## Summary

A lot of good new lints, and most importantly, error stabilizations. I
tried to find a few usages of the new stabilizations, but I'm sure there
are more.

IIUC, this _does_ require bumping our MSRV.
This commit is contained in:
Charlie Marsh 2024-11-29 12:04:22 -05:00 committed by GitHub
parent b9b37a9bab
commit cf20673197
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 71 additions and 64 deletions

View file

@ -350,7 +350,7 @@ impl ScriptTag {
let mut lines = contents.lines();
// Ensure that the first line is exactly `# /// script`.
if !lines.next().is_some_and(|line| line == "# /// script") {
if lines.next().is_none_or(|line| line != "# /// script") {
return Ok(None);
}