diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-11-03 10:14:21 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-11-03 10:14:21 +0100 |
commit | c4f27e42b77d23614a36dd694a44313f510950da (patch) | |
tree | 52b047ef8eb2f5cff12d0d59990fdffffcb202e0 | |
parent | 0a48c69061565217a9c6eb373677df297b195b22 (diff) | |
download | servo-c4f27e42b77d23614a36dd694a44313f510950da.tar.gz servo-c4f27e42b77d23614a36dd694a44313f510950da.zip |
Remove #![feature(custom_derive)]
-rw-r--r-- | components/canvas_traits/lib.rs | 1 | ||||
-rw-r--r-- | components/compositing/lib.rs | 1 | ||||
-rw-r--r-- | components/constellation/lib.rs | 1 | ||||
-rw-r--r-- | components/devtools/lib.rs | 1 | ||||
-rw-r--r-- | components/gfx/lib.rs | 1 | ||||
-rw-r--r-- | components/gfx_traits/lib.rs | 2 | ||||
-rw-r--r-- | components/layout/lib.rs | 1 | ||||
-rw-r--r-- | components/layout_thread/lib.rs | 1 | ||||
-rw-r--r-- | components/msg/lib.rs | 2 | ||||
-rw-r--r-- | components/net/lib.rs | 1 | ||||
-rw-r--r-- | components/profile/lib.rs | 1 | ||||
-rw-r--r-- | components/profile_traits/lib.rs | 2 | ||||
-rw-r--r-- | components/script/lib.rs | 1 | ||||
-rw-r--r-- | components/script_layout_interface/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 | ||||
-rw-r--r-- | components/util/lib.rs | 1 |
18 files changed, 4 insertions, 18 deletions
diff --git a/components/canvas_traits/lib.rs b/components/canvas_traits/lib.rs index ec30efe03db..d255e562bcc 100644 --- a/components/canvas_traits/lib.rs +++ b/components/canvas_traits/lib.rs @@ -4,7 +4,6 @@ #![crate_name = "canvas_traits"] #![crate_type = "rlib"] -#![feature(custom_derive)] #![feature(plugin)] #![feature(proc_macro)] #![feature(rustc_attrs)] diff --git a/components/compositing/lib.rs b/components/compositing/lib.rs index e976b52f09e..ee67e959157 100644 --- a/components/compositing/lib.rs +++ b/components/compositing/lib.rs @@ -3,7 +3,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![feature(box_syntax)] -#![feature(custom_derive)] #![feature(plugin)] #![feature(proc_macro)] #![plugin(plugins)] diff --git a/components/constellation/lib.rs b/components/constellation/lib.rs index 072d8605712..fe3755ad88f 100644 --- a/components/constellation/lib.rs +++ b/components/constellation/lib.rs @@ -3,7 +3,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![feature(box_syntax)] -#![feature(custom_derive)] #![feature(mpsc_select)] #![feature(plugin)] #![feature(proc_macro)] diff --git a/components/devtools/lib.rs b/components/devtools/lib.rs index 8e596dbe791..3e638a3ca4a 100644 --- a/components/devtools/lib.rs +++ b/components/devtools/lib.rs @@ -12,7 +12,6 @@ #![feature(box_syntax)] #![feature(custom_attribute)] -#![feature(custom_derive)] #![feature(plugin)] #![feature(proc_macro)] #![plugin(plugins)] diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index b3228018181..b0aa58f895d 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -8,7 +8,6 @@ #![feature(alloc)] #![feature(box_syntax)] #![feature(custom_attribute)] -#![feature(custom_derive)] #![feature(plugin)] #![feature(proc_macro)] #![feature(range_contains)] diff --git a/components/gfx_traits/lib.rs b/components/gfx_traits/lib.rs index 80b45444e3f..a7723683eca 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(custom_derive, plugin, proc_macro, rustc_attrs, structural_match)] +#![feature(plugin, proc_macro, rustc_attrs, structural_match)] #![plugin(plugins)] #![crate_name = "gfx_traits"] diff --git a/components/layout/lib.rs b/components/layout/lib.rs index 57fd7b3e98e..59c59bed502 100644 --- a/components/layout/lib.rs +++ b/components/layout/lib.rs @@ -5,7 +5,6 @@ #![feature(box_patterns)] #![feature(box_syntax)] #![feature(conservative_impl_trait)] -#![feature(custom_derive)] #![feature(nonzero)] #![feature(plugin)] #![feature(proc_macro)] diff --git a/components/layout_thread/lib.rs b/components/layout_thread/lib.rs index f330054441b..788fff29a5c 100644 --- a/components/layout_thread/lib.rs +++ b/components/layout_thread/lib.rs @@ -6,7 +6,6 @@ //! painted. #![feature(box_syntax)] -#![feature(custom_derive)] #![feature(mpsc_select)] #![feature(plugin)] #![feature(proc_macro)] diff --git a/components/msg/lib.rs b/components/msg/lib.rs index 788229acb64..47b6a781cbf 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(custom_attribute, custom_derive, plugin, proc_macro, rustc_attrs, structural_match)] +#![feature(custom_attribute, plugin, proc_macro, rustc_attrs, structural_match)] #![plugin(plugins)] #![deny(unsafe_code)] diff --git a/components/net/lib.rs b/components/net/lib.rs index 4fc91cc2e7f..2ab6a1b9ff7 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -4,7 +4,6 @@ #![feature(box_syntax)] #![feature(custom_attribute)] -#![feature(custom_derive)] #![feature(fnbox)] #![feature(mpsc_select)] #![feature(plugin)] diff --git a/components/profile/lib.rs b/components/profile/lib.rs index 6df11fa1ebd..5e1c4804dc9 100644 --- a/components/profile/lib.rs +++ b/components/profile/lib.rs @@ -4,7 +4,6 @@ #![cfg_attr(not(target_os = "windows"), feature(alloc_jemalloc))] #![feature(box_syntax)] -#![feature(custom_derive)] #![feature(plugin)] #![feature(proc_macro)] #![plugin(plugins)] diff --git a/components/profile_traits/lib.rs b/components/profile_traits/lib.rs index 2149614d4a5..c56196a9e2f 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(custom_derive, plugin, proc_macro, rustc_attrs, structural_match)] +#![feature(plugin, proc_macro, rustc_attrs, structural_match)] #![plugin(plugins)] #![deny(unsafe_code)] diff --git a/components/script/lib.rs b/components/script/lib.rs index ed4fcf8b5ee..f1ddb8d82bc 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -7,7 +7,6 @@ #![feature(const_fn)] #![feature(core_intrinsics)] #![feature(custom_attribute)] -#![feature(custom_derive)] #![feature(fnbox)] #![feature(mpsc_select)] #![feature(nonzero)] diff --git a/components/script_layout_interface/lib.rs b/components/script_layout_interface/lib.rs index 70ffcf15524..00d63d79298 100644 --- a/components/script_layout_interface/lib.rs +++ b/components/script_layout_interface/lib.rs @@ -9,7 +9,6 @@ #![deny(unsafe_code)] #![feature(box_syntax)] #![feature(custom_attribute)] -#![feature(custom_derive)] #![feature(nonzero)] #![feature(plugin)] #![feature(proc_macro)] diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index edb9aca62a5..7d7b6824bff 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(custom_derive, plugin, proc_macro, rustc_attrs, structural_match)] +#![feature(plugin, proc_macro, rustc_attrs, structural_match)] #![plugin(plugins)] #![deny(missing_docs)] #![deny(unsafe_code)] diff --git a/components/style/lib.rs b/components/style/lib.rs index f79d50ead6d..41b9a57c3cf 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -24,7 +24,6 @@ //! [selectors]: ../selectors/index.html #![cfg_attr(feature = "servo", feature(custom_attribute))] -#![cfg_attr(feature = "servo", feature(custom_derive))] #![cfg_attr(feature = "servo", feature(plugin))] #![cfg_attr(feature = "servo", feature(proc_macro))] #![cfg_attr(feature = "servo", feature(rustc_attrs))] diff --git a/components/style_traits/lib.rs b/components/style_traits/lib.rs index c6a1d574a90..1c4aa627bac 100644 --- a/components/style_traits/lib.rs +++ b/components/style_traits/lib.rs @@ -11,7 +11,6 @@ #![deny(unsafe_code)] -#![cfg_attr(feature = "servo", feature(custom_derive))] #![cfg_attr(feature = "servo", feature(plugin))] #![cfg_attr(feature = "servo", feature(proc_macro))] #![cfg_attr(feature = "servo", feature(rustc_attrs))] diff --git a/components/util/lib.rs b/components/util/lib.rs index 36680583a4b..2b16912c7bf 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -2,7 +2,6 @@ * 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/. */ -#![cfg_attr(feature = "servo", feature(custom_derive))] #![cfg_attr(feature = "servo", feature(nonzero))] #![cfg_attr(feature = "servo", feature(plugin))] #![cfg_attr(feature = "servo", feature(proc_macro))] |