Remove #![feature(rustc_attrs)]

This commit is contained in:
Anthony Ramine 2016-11-03 10:24:11 +01:00
parent 3bc26d1819
commit 046a97fa13
10 changed files with 4 additions and 10 deletions

View file

@ -6,7 +6,6 @@
#![crate_type = "rlib"] #![crate_type = "rlib"]
#![feature(plugin)] #![feature(plugin)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(rustc_attrs)]
#![plugin(plugins)] #![plugin(plugins)]
#![deny(unsafe_code)] #![deny(unsafe_code)]

View file

@ -12,7 +12,7 @@
#![allow(non_snake_case)] #![allow(non_snake_case)]
#![deny(unsafe_code)] #![deny(unsafe_code)]
#![feature(proc_macro, rustc_attrs)] #![feature(proc_macro)]
#[allow(unused_extern_crates)] #[allow(unused_extern_crates)]
#[macro_use] #[macro_use]

View file

@ -10,7 +10,6 @@
#![feature(plugin)] #![feature(plugin)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(range_contains)] #![feature(range_contains)]
#![feature(rustc_attrs)]
#![feature(unique)] #![feature(unique)]
#![plugin(plugins)] #![plugin(plugins)]

View file

@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![feature(plugin, proc_macro, rustc_attrs)] #![feature(plugin, proc_macro)]
#![plugin(plugins)] #![plugin(plugins)]
#![crate_name = "gfx_traits"] #![crate_name = "gfx_traits"]

View file

@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![feature(plugin, proc_macro, rustc_attrs)] #![feature(plugin, proc_macro)]
#![plugin(plugins)] #![plugin(plugins)]
#![deny(unsafe_code)] #![deny(unsafe_code)]

View file

@ -4,7 +4,6 @@
#![feature(box_syntax)] #![feature(box_syntax)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(rustc_attrs)]
#![feature(slice_patterns)] #![feature(slice_patterns)]
#![feature(step_by)] #![feature(step_by)]

View file

@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(rustc_attrs)]
#![feature(step_trait)] #![feature(step_trait)]
#![deny(unsafe_code)] #![deny(unsafe_code)]

View file

@ -6,7 +6,7 @@
//! The traits are here instead of in script so that these modules won't have //! The traits are here instead of in script so that these modules won't have
//! to depend on script. //! to depend on script.
#![feature(plugin, proc_macro, rustc_attrs)] #![feature(plugin, proc_macro)]
#![plugin(plugins)] #![plugin(plugins)]
#![deny(missing_docs)] #![deny(missing_docs)]
#![deny(unsafe_code)] #![deny(unsafe_code)]

View file

@ -25,7 +25,6 @@
#![cfg_attr(feature = "servo", feature(plugin))] #![cfg_attr(feature = "servo", feature(plugin))]
#![cfg_attr(feature = "servo", feature(proc_macro))] #![cfg_attr(feature = "servo", feature(proc_macro))]
#![cfg_attr(feature = "servo", feature(rustc_attrs))]
#![cfg_attr(feature = "servo", plugin(plugins))] #![cfg_attr(feature = "servo", plugin(plugins))]
#![deny(warnings)] #![deny(warnings)]

View file

@ -13,7 +13,6 @@
#![cfg_attr(feature = "servo", feature(plugin))] #![cfg_attr(feature = "servo", feature(plugin))]
#![cfg_attr(feature = "servo", feature(proc_macro))] #![cfg_attr(feature = "servo", feature(proc_macro))]
#![cfg_attr(feature = "servo", feature(rustc_attrs))]
extern crate app_units; extern crate app_units;
#[macro_use] #[macro_use]