Suppress a new pedantic lint

This commit is contained in:
David Tolnay 2019-05-31 21:25:36 -07:00
parent cd0412bddc
commit 89c6a79b6e
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 0 deletions

View File

@ -90,6 +90,7 @@
feature = "cargo-clippy",
allow(
// not available in our oldest supported compiler
checked_conversions,
const_static_lifetime,
empty_enum,
redundant_field_names,

View File

@ -35,6 +35,7 @@
feature = "cargo-clippy",
allow(
cast_possible_truncation,
checked_conversions,
doc_markdown,
enum_glob_use,
filter_map,