aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-11-03 10:18:55 +0100
committerAnthony Ramine <n.oxyde@gmail.com>2016-11-03 11:24:13 +0100
commita9767333ebdda155a02a8c577f8df659d496cd14 (patch)
tree72ce5604615a57ffcb5eb98f152a056b47fdf922 /components
parentc4f27e42b77d23614a36dd694a44313f510950da (diff)
downloadservo-a9767333ebdda155a02a8c577f8df659d496cd14.tar.gz
servo-a9767333ebdda155a02a8c577f8df659d496cd14.zip
Remove #![feature(custom_attribute)]
Diffstat (limited to 'components')
-rw-r--r--components/devtools/lib.rs1
-rw-r--r--components/gfx/lib.rs1
-rw-r--r--components/msg/lib.rs2
-rw-r--r--components/net/lib.rs1
-rw-r--r--components/net_traits/lib.rs1
-rw-r--r--components/script/lib.rs1
-rw-r--r--components/script_layout_interface/lib.rs1
-rw-r--r--components/style/lib.rs1
8 files changed, 1 insertions, 8 deletions
diff --git a/components/devtools/lib.rs b/components/devtools/lib.rs
index 3e638a3ca4a..815bee12a88 100644
--- a/components/devtools/lib.rs
+++ b/components/devtools/lib.rs
@@ -11,7 +11,6 @@
#![crate_type = "rlib"]
#![feature(box_syntax)]
-#![feature(custom_attribute)]
#![feature(plugin)]
#![feature(proc_macro)]
#![plugin(plugins)]
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs
index b0aa58f895d..f4a1d1d721b 100644
--- a/components/gfx/lib.rs
+++ b/components/gfx/lib.rs
@@ -7,7 +7,6 @@
#![feature(alloc)]
#![feature(box_syntax)]
-#![feature(custom_attribute)]
#![feature(plugin)]
#![feature(proc_macro)]
#![feature(range_contains)]
diff --git a/components/msg/lib.rs b/components/msg/lib.rs
index 47b6a781cbf..b9db1df25e3 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, plugin, proc_macro, rustc_attrs, structural_match)]
+#![feature(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 2ab6a1b9ff7..f830eb2befa 100644
--- a/components/net/lib.rs
+++ b/components/net/lib.rs
@@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![feature(box_syntax)]
-#![feature(custom_attribute)]
#![feature(fnbox)]
#![feature(mpsc_select)]
#![feature(plugin)]
diff --git a/components/net_traits/lib.rs b/components/net_traits/lib.rs
index ff13b4e9c26..2b519830b83 100644
--- a/components/net_traits/lib.rs
+++ b/components/net_traits/lib.rs
@@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![feature(box_syntax)]
-#![feature(custom_attribute)]
#![feature(proc_macro)]
#![feature(rustc_attrs)]
#![feature(slice_patterns)]
diff --git a/components/script/lib.rs b/components/script/lib.rs
index f1ddb8d82bc..dd6299aa051 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -6,7 +6,6 @@
#![feature(conservative_impl_trait)]
#![feature(const_fn)]
#![feature(core_intrinsics)]
-#![feature(custom_attribute)]
#![feature(fnbox)]
#![feature(mpsc_select)]
#![feature(nonzero)]
diff --git a/components/script_layout_interface/lib.rs b/components/script_layout_interface/lib.rs
index 00d63d79298..2cad69cdcc8 100644
--- a/components/script_layout_interface/lib.rs
+++ b/components/script_layout_interface/lib.rs
@@ -8,7 +8,6 @@
#![deny(unsafe_code)]
#![feature(box_syntax)]
-#![feature(custom_attribute)]
#![feature(nonzero)]
#![feature(plugin)]
#![feature(proc_macro)]
diff --git a/components/style/lib.rs b/components/style/lib.rs
index 41b9a57c3cf..206607732e4 100644
--- a/components/style/lib.rs
+++ b/components/style/lib.rs
@@ -23,7 +23,6 @@
//! [cssparser]: ../cssparser/index.html
//! [selectors]: ../selectors/index.html
-#![cfg_attr(feature = "servo", feature(custom_attribute))]
#![cfg_attr(feature = "servo", feature(plugin))]
#![cfg_attr(feature = "servo", feature(proc_macro))]
#![cfg_attr(feature = "servo", feature(rustc_attrs))]