From 57cda8ef5ee3e1378b247202c66b42e4d50b1e56 Mon Sep 17 00:00:00 2001 From: Matias Linares Date: Sat, 4 Jun 2016 16:34:42 -0300 Subject: Allow unknown lints for rust stable --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index b1873f3..dcef752 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,7 @@ // See LICENSE file for copyright and license details. +// needed for clippy. +#![allow(unknown_lints)] #![cfg_attr(feature="clippy", feature(plugin))] #![cfg_attr(feature="clippy", plugin(clippy))] extern crate libc; -- cgit v1.2.3-54-g00ecf