// These allows should be in a [lints] in Cargo.toml,
// which was stabilised in Rust 1.74. So maybe not do that yet.
+// We don't mind this accumulating lints indefinitely. Misspellings
+// are unlikely because we put things here to suppress lints we're seeing,
+// in which case a misspelling wouldn't be effective. Eventually,
+// we might run a CI check for *deprecated* lints with our MSRV,
+// and *unknown* lints with nightly. But this will definitely do:
+#![allow(unknown_lints)]
// Non-minimal coding patterns we sometimes use for clarity
#![allow(clippy::collapsible_if)]
#![allow(clippy::single_match)]