From 5efd1f4f1bbdd2f195c73226bf8d848dcad32dd8 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 12 Feb 2020 18:19:23 -0800 Subject: [PATCH] Ignore match_single_binding clippy lint --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 15ab673..0baf724 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -306,6 +306,7 @@ #![allow( clippy::deprecated_cfg_attr, clippy::doc_markdown, + clippy::match_single_binding, clippy::needless_doctest_main, clippy::transmute_ptr_to_ptr )]