From cde3496305cf2f115f4e348fe60f01dcfda20fbd Mon Sep 17 00:00:00 2001 From: Artem Vorotnikov Date: Sat, 6 Feb 2021 08:51:56 +0300 Subject: [PATCH] Fix superfluous warning --- src/lib.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9a71710..8691bf6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,11 @@ trait_alias, type_alias_impl_trait )] -#![allow(incomplete_features, clippy::unused_io_amount)] +#![allow( + incomplete_features, + clippy::mutable_key_type, + clippy::unused_io_amount +)] mod changeset; mod common;