diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-11-03 10:24:11 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-11-03 11:24:19 +0100 |
commit | 046a97fa132db36364368a69082efb65b9cb4ee1 (patch) | |
tree | f174e2e7a65b7b3c9b2a13357aa8a9f92fcf0183 | |
parent | 3bc26d18190b6d2410f6f804a4bf9c910c1e0c28 (diff) | |
download | servo-046a97fa132db36364368a69082efb65b9cb4ee1.tar.gz servo-046a97fa132db36364368a69082efb65b9cb4ee1.zip |
Remove #![feature(rustc_attrs)]
-rw-r--r-- | components/canvas_traits/lib.rs | 1 | ||||
-rw-r--r-- | components/devtools_traits/lib.rs | 2 | ||||
-rw-r--r-- | components/gfx/lib.rs | 1 | ||||
-rw-r--r-- | components/gfx_traits/lib.rs | 2 | ||||
-rw-r--r-- | components/msg/lib.rs | 2 | ||||
-rw-r--r-- | components/net_traits/lib.rs | 1 | ||||
-rw-r--r-- | components/range/lib.rs | 1 | ||||
-rw-r--r-- | components/script_traits/lib.rs | 2 | ||||
-rw-r--r-- | components/style/lib.rs | 1 | ||||
-rw-r--r-- | components/style_traits/lib.rs | 1 |
10 files changed, 4 insertions, 10 deletions
diff --git a/components/canvas_traits/lib.rs b/components/canvas_traits/lib.rs index d255e562bcc..5a1acc710d5 100644 --- a/components/canvas_traits/lib.rs +++ b/components/canvas_traits/lib.rs @@ -6,7 +6,6 @@ #![crate_type = "rlib"] #![feature(plugin)] #![feature(proc_macro)] -#![feature(rustc_attrs)] #![plugin(plugins)] #![deny(unsafe_code)] diff --git a/components/devtools_traits/lib.rs b/components/devtools_traits/lib.rs index 6fcac6cf4a2..17362ed5558 100644 --- a/components/devtools_traits/lib.rs +++ b/components/devtools_traits/lib.rs @@ -12,7 +12,7 @@ #![allow(non_snake_case)] #![deny(unsafe_code)] -#![feature(proc_macro, rustc_attrs)] +#![feature(proc_macro)] #[allow(unused_extern_crates)] #[macro_use] diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index 4fa31729495..c6d4e0fc845 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -10,7 +10,6 @@ #![feature(plugin)] #![feature(proc_macro)] #![feature(range_contains)] -#![feature(rustc_attrs)] #![feature(unique)] #![plugin(plugins)] diff --git a/components/gfx_traits/lib.rs b/components/gfx_traits/lib.rs index c8088a05e93..09593189512 100644 --- a/components/gfx_traits/lib.rs +++ b/components/gfx_traits/lib.rs @@ -2,7 +2,7 @@ * 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/. */ -#![feature(plugin, proc_macro, rustc_attrs)] +#![feature(plugin, proc_macro)] #![plugin(plugins)] #![crate_name = "gfx_traits"] diff --git a/components/msg/lib.rs b/components/msg/lib.rs index d7335391553..d32217d0256 100644 --- a/components/msg/lib.rs +++ b/components/msg/lib.rs @@ -2,7 +2,7 @@ * 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/. */ -#![feature(plugin, proc_macro, rustc_attrs)] +#![feature(plugin, proc_macro)] #![plugin(plugins)] #![deny(unsafe_code)] diff --git a/components/net_traits/lib.rs b/components/net_traits/lib.rs index d6e6e72cdf7..e45e7e481bf 100644 --- a/components/net_traits/lib.rs +++ b/components/net_traits/lib.rs @@ -4,7 +4,6 @@ #![feature(box_syntax)] #![feature(proc_macro)] -#![feature(rustc_attrs)] #![feature(slice_patterns)] #![feature(step_by)] diff --git a/components/range/lib.rs b/components/range/lib.rs index 0451d332643..2b76a070911 100644 --- a/components/range/lib.rs +++ b/components/range/lib.rs @@ -3,7 +3,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![feature(proc_macro)] -#![feature(rustc_attrs)] #![feature(step_trait)] #![deny(unsafe_code)] diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index f9eca459f1b..2617f745dbd 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -6,7 +6,7 @@ //! The traits are here instead of in script so that these modules won't have //! to depend on script. -#![feature(plugin, proc_macro, rustc_attrs)] +#![feature(plugin, proc_macro)] #![plugin(plugins)] #![deny(missing_docs)] #![deny(unsafe_code)] diff --git a/components/style/lib.rs b/components/style/lib.rs index 05c4f49e493..b185312c9e0 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -25,7 +25,6 @@ #![cfg_attr(feature = "servo", feature(plugin))] #![cfg_attr(feature = "servo", feature(proc_macro))] -#![cfg_attr(feature = "servo", feature(rustc_attrs))] #![cfg_attr(feature = "servo", plugin(plugins))] #![deny(warnings)] diff --git a/components/style_traits/lib.rs b/components/style_traits/lib.rs index f0921dbf48a..bd060abf139 100644 --- a/components/style_traits/lib.rs +++ b/components/style_traits/lib.rs @@ -13,7 +13,6 @@ #![cfg_attr(feature = "servo", feature(plugin))] #![cfg_attr(feature = "servo", feature(proc_macro))] -#![cfg_attr(feature = "servo", feature(rustc_attrs))] extern crate app_units; #[macro_use] |