Ignore indexing_slicing pedantic lint

This commit is contained in:
David Tolnay 2018-06-26 23:56:39 -07:00
parent cc9d85b293
commit c45ab6b304
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -37,7 +37,7 @@
feature = "cargo-clippy",
allow(
items_after_statements, doc_markdown, stutter, similar_names, use_self, single_match_else,
enum_glob_use, match_same_arms, filter_map, cast_possible_truncation
enum_glob_use, match_same_arms, filter_map, cast_possible_truncation, indexing_slicing,
)
)]
// The `quote!` macro requires deep recursion.