Ignore type_repetition_in_bounds lint that is incompatible with msrv

https://github.com/rust-lang/rust-clippy/issues/8772
This commit is contained in:
David Tolnay
2022-04-30 21:20:57 -07:00
parent 52391fd868
commit 7ca13ff240
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -107,6 +107,7 @@
empty_enum,
redundant_field_names,
redundant_static_lifetimes,
type_repetition_in_bounds, // https://github.com/rust-lang/rust-clippy/issues/8772
// integer and float ser/de requires these sorts of casts
cast_possible_truncation,
cast_possible_wrap,
+1
View File
@@ -161,6 +161,7 @@
must_use_candidate,
redundant_field_names,
too_many_lines,
type_repetition_in_bounds, // https://github.com/rust-lang/rust-clippy/issues/8772
use_debug,
use_self
)