This fixes all clippy warnings on the latest stable:
cargo 1.67.1 (8ecd4f20a 2023-01-10)
clippy 0.1.67 (d5a82bbd 2023-02-07)
Clippy also warned about the test_bump_* test cases, where assert_eq!(true, ...) and assert_eq!(false, ...) are used. I've changed these to assert!(...) and assert!(!...) respectively. Let me know if you want these reverted!
This fixes all clippy warnings on the latest stable:
cargo 1.67.1 (8ecd4f20a 2023-01-10)
clippy 0.1.67 (d5a82bbd 2023-02-07)
Clippy also warned about the
test_bump_*
test cases, whereassert_eq!(true, ...)
andassert_eq!(false, ...)
are used. I've changed these toassert!(...)
andassert!(!...)
respectively. Let me know if you want these reverted!