From ad582de058e24057597563f9822ecc25c2bbb9a5 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Tue, 29 Oct 2019 20:49:09 +0100 Subject: [PATCH] Allow clippy warning use_self --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 4ca111ab..217e2ff6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -27,6 +27,8 @@ clippy::wrong_pub_self_convention, clippy::wrong_self_convention )] +// Since we support Rust 1.34.2, we can't apply this suggestion yet +#![allow(clippy::use_self)] pub mod r0; pub mod unversioned;