From 3a5aa002625b106f883d92df44f87f04c8ebe1b7 Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Mon, 8 Feb 2016 20:54:09 -0800 Subject: [PATCH] fix(codegen): Fix clippy cfg_attr --- serde_codegen/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serde_codegen/src/lib.rs b/serde_codegen/src/lib.rs index 83e768a6..a2699c78 100644 --- a/serde_codegen/src/lib.rs +++ b/serde_codegen/src/lib.rs @@ -1,4 +1,4 @@ -#![cfg_attr(feature = "nightly", plugin(clippy))] +#![cfg_attr(feature = "nightly-testing", plugin(clippy))] #![cfg_attr(feature = "nightly", allow(used_underscore_binding))] #![cfg_attr(not(feature = "with-syntex"), feature(rustc_private, plugin))] #![cfg_attr(not(feature = "with-syntex"), plugin(quasi_macros))]