From c22e161f7bd97d4f6c063513cc051f6af2683d84 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Tue, 17 Mar 2020 23:01:35 +0000 Subject: Run clippy --- dhall/src/lib.rs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'dhall/src/lib.rs') diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs index d68ad6b..d7d7f05 100644 --- a/dhall/src/lib.rs +++ b/dhall/src/lib.rs @@ -1,12 +1,10 @@ #![doc(html_root_url = "https://docs.rs/dhall/0.3.0")] #![feature(never_type)] #![allow( - clippy::type_complexity, - clippy::infallible_destructuring_match, - clippy::many_single_char_names, - clippy::match_wild_err_arm, - clippy::redundant_closure, - clippy::ptr_arg + clippy::int_plus_one, // Comes from pest_consume macro + clippy::module_inception, + clippy::needless_lifetimes, + clippy::useless_format )] mod tests; -- cgit v1.2.3