Remove #![feature(custom_attribute)]

This commit is contained in:
Anthony Ramine 2016-11-03 10:18:55 +01:00
parent c4f27e42b7
commit a9767333eb
8 changed files with 1 additions and 8 deletions

View file

@ -11,7 +11,6 @@
#![crate_type = "rlib"] #![crate_type = "rlib"]
#![feature(box_syntax)] #![feature(box_syntax)]
#![feature(custom_attribute)]
#![feature(plugin)] #![feature(plugin)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![plugin(plugins)] #![plugin(plugins)]

View file

@ -7,7 +7,6 @@
#![feature(alloc)] #![feature(alloc)]
#![feature(box_syntax)] #![feature(box_syntax)]
#![feature(custom_attribute)]
#![feature(plugin)] #![feature(plugin)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(range_contains)] #![feature(range_contains)]

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(custom_attribute, plugin, proc_macro, rustc_attrs, structural_match)] #![feature(plugin, proc_macro, rustc_attrs, structural_match)]
#![plugin(plugins)] #![plugin(plugins)]
#![deny(unsafe_code)] #![deny(unsafe_code)]

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(box_syntax)] #![feature(box_syntax)]
#![feature(custom_attribute)]
#![feature(fnbox)] #![feature(fnbox)]
#![feature(mpsc_select)] #![feature(mpsc_select)]
#![feature(plugin)] #![feature(plugin)]

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(box_syntax)] #![feature(box_syntax)]
#![feature(custom_attribute)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(rustc_attrs)] #![feature(rustc_attrs)]
#![feature(slice_patterns)] #![feature(slice_patterns)]

View file

@ -6,7 +6,6 @@
#![feature(conservative_impl_trait)] #![feature(conservative_impl_trait)]
#![feature(const_fn)] #![feature(const_fn)]
#![feature(core_intrinsics)] #![feature(core_intrinsics)]
#![feature(custom_attribute)]
#![feature(fnbox)] #![feature(fnbox)]
#![feature(mpsc_select)] #![feature(mpsc_select)]
#![feature(nonzero)] #![feature(nonzero)]

View file

@ -8,7 +8,6 @@
#![deny(unsafe_code)] #![deny(unsafe_code)]
#![feature(box_syntax)] #![feature(box_syntax)]
#![feature(custom_attribute)]
#![feature(nonzero)] #![feature(nonzero)]
#![feature(plugin)] #![feature(plugin)]
#![feature(proc_macro)] #![feature(proc_macro)]

View file

@ -23,7 +23,6 @@
//! [cssparser]: ../cssparser/index.html //! [cssparser]: ../cssparser/index.html
//! [selectors]: ../selectors/index.html //! [selectors]: ../selectors/index.html
#![cfg_attr(feature = "servo", feature(custom_attribute))]
#![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", feature(rustc_attrs))]