Clippy: allow too_many_arguments, many_single_char_names

This commit is contained in:
ice_iix 2020-06-29 18:17:16 -07:00
parent fe5cb47d40
commit e8c066cd26
1 changed files with 2 additions and 0 deletions

View File

@ -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};