diff options
Diffstat (limited to 'components')
-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/profile_traits/lib.rs | 2 | ||||
-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 | ||||
-rw-r--r-- | components/util/lib.rs | 1 |
10 files changed, 5 insertions, 10 deletions
diff --git a/components/devtools_traits/lib.rs b/components/devtools_traits/lib.rs index 7335371bca4..6fcac6cf4a2 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, structural_match)] +#![feature(proc_macro, rustc_attrs)] #[allow(unused_extern_crates)] #[macro_use] diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index f4a1d1d721b..4fa31729495 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -11,7 +11,6 @@ #![feature(proc_macro)] #![feature(range_contains)] #![feature(rustc_attrs)] -#![feature(structural_match)] #![feature(unique)] #![plugin(plugins)] diff --git a/components/gfx_traits/lib.rs b/components/gfx_traits/lib.rs index a7723683eca..c8088a05e93 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, structural_match)] +#![feature(plugin, proc_macro, rustc_attrs)] #![plugin(plugins)] #![crate_name = "gfx_traits"] diff --git a/components/msg/lib.rs b/components/msg/lib.rs index b9db1df25e3..d7335391553 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, structural_match)] +#![feature(plugin, proc_macro, rustc_attrs)] #![plugin(plugins)] #![deny(unsafe_code)] diff --git a/components/net_traits/lib.rs b/components/net_traits/lib.rs index 2b519830b83..d6e6e72cdf7 100644 --- a/components/net_traits/lib.rs +++ b/components/net_traits/lib.rs @@ -7,7 +7,6 @@ #![feature(rustc_attrs)] #![feature(slice_patterns)] #![feature(step_by)] -#![feature(structural_match)] #![deny(unsafe_code)] diff --git a/components/profile_traits/lib.rs b/components/profile_traits/lib.rs index c56196a9e2f..4a826c1db0d 100644 --- a/components/profile_traits/lib.rs +++ b/components/profile_traits/lib.rs @@ -7,7 +7,7 @@ //! modules won't have to depend on `profile`. #![feature(box_syntax)] -#![feature(plugin, proc_macro, rustc_attrs, structural_match)] +#![feature(plugin, proc_macro)] #![plugin(plugins)] #![deny(unsafe_code)] diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 7d7b6824bff..f9eca459f1b 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, structural_match)] +#![feature(plugin, proc_macro, rustc_attrs)] #![plugin(plugins)] #![deny(missing_docs)] #![deny(unsafe_code)] diff --git a/components/style/lib.rs b/components/style/lib.rs index 206607732e4..05c4f49e493 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -26,7 +26,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", feature(structural_match))] #![cfg_attr(feature = "servo", plugin(plugins))] #![deny(warnings)] diff --git a/components/style_traits/lib.rs b/components/style_traits/lib.rs index 1c4aa627bac..f0921dbf48a 100644 --- a/components/style_traits/lib.rs +++ b/components/style_traits/lib.rs @@ -14,7 +14,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", feature(structural_match))] extern crate app_units; #[macro_use] diff --git a/components/util/lib.rs b/components/util/lib.rs index 2b16912c7bf..b8ec37a01fe 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -5,7 +5,6 @@ #![cfg_attr(feature = "servo", feature(nonzero))] #![cfg_attr(feature = "servo", feature(plugin))] #![cfg_attr(feature = "servo", feature(proc_macro))] -#![cfg_attr(feature = "servo", feature(structural_match))] #![cfg_attr(feature = "servo", plugin(plugins))] #![deny(unsafe_code)] |