Closed 00xc closed 9 months ago
Since we are using the Rust 2021 edition, remove 2018 edition idioms. Add a lint to prevent future addition of these idioms.
Most of these changes are the addition of explicit lifetimes and removing extern crate statements where they were not needed.
extern crate
Clippy would warn about these with:
cargo clippy --all-features -- -W rust-2018-idioms
Since we are using the Rust 2021 edition, remove 2018 edition idioms. Add a lint to prevent future addition of these idioms.
Most of these changes are the addition of explicit lifetimes and removing
extern crate
statements where they were not needed.Clippy would warn about these with: