Clippy has a number of exciting new lints: https://github.com/rust-lang/rust-clippy/blob/master/CHANGELOG.md#new-lints
For example, you can now enable #![warn(clippy::manual_let_else)] to tell you about some situations where you could use the recently introduced let-else syntax.
5/6