From 946602c2988a56c332c1872452c590fa67b89733 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Sun, 4 Aug 2019 14:20:14 -0700 Subject: [PATCH] nit: disable field pun warning https://github.com/rust-lang/rust-clippy/issues/3422 --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 2ab1dd79..dd8dc965 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -64,6 +64,7 @@ )] #![deny(missing_docs)] #![cfg_attr(test, deny(warnings))] +#![allow(clippy::redundant_field_names)] use std::io::prelude::*;