From e8c066cd266ce3262c7bb03183f1ecf1d030a421 Mon Sep 17 00:00:00 2001 From: ice_iix Date: Mon, 29 Jun 2020 18:17:16 -0700 Subject: [PATCH] Clippy: allow too_many_arguments, many_single_char_names --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index c999dd2..9f9d696 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,6 +13,8 @@ // limitations under the License. #![recursion_limit = "300"] +#![allow(clippy::too_many_arguments)] +#![allow(clippy::many_single_char_names)] use log::{error, info, warn}; use std::time::{Duration, Instant};