Upgrade to rustc 1.16.0-nightly (6f1ae663e 2017-01-06)

This commit is contained in:
Simon Sapin 2017-01-06 17:43:31 +01:00
parent 0cd0bdd33e
commit 67aea3bba4
25 changed files with 5 additions and 29 deletions

View file

@ -2,8 +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/. */
#![feature(proc_macro)]
extern crate ipc_channel;
extern crate regex;
#[macro_use]

View file

@ -5,7 +5,6 @@
#![crate_name = "canvas_traits"]
#![crate_type = "rlib"]
#![feature(plugin)]
#![feature(proc_macro)]
#![plugin(plugins)]
#![deny(unsafe_code)]

View file

@ -4,7 +4,6 @@
#![feature(box_syntax)]
#![feature(plugin)]
#![feature(proc_macro)]
#![plugin(plugins)]
#![deny(unsafe_code)]

View file

@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![cfg_attr(feature = "servo", feature(plugin))]
#![cfg_attr(feature = "servo", feature(proc_macro))]
#![cfg_attr(feature = "servo", plugin(plugins))]
#![deny(unsafe_code)]

View file

@ -6,7 +6,6 @@
#![feature(conservative_impl_trait)]
#![feature(mpsc_select)]
#![feature(plugin)]
#![feature(proc_macro)]
#![plugin(plugins)]
#![deny(unsafe_code)]

View file

@ -12,7 +12,6 @@
#![feature(box_syntax)]
#![feature(plugin)]
#![feature(proc_macro)]
#![plugin(plugins)]
#![allow(non_snake_case)]

View file

@ -12,8 +12,6 @@
#![allow(non_snake_case)]
#![deny(unsafe_code)]
#![feature(proc_macro)]
#[allow(unused_extern_crates)]
#[macro_use]
extern crate bitflags;

View file

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

View file

@ -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)]
#![feature(plugin)]
#![plugin(plugins)]
#![crate_name = "gfx_traits"]

View file

@ -2,8 +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/. */
#![feature(proc_macro, proc_macro_lib)]
extern crate proc_macro;
#[macro_use] extern crate quote;
extern crate syn;

View file

@ -7,7 +7,6 @@
#![feature(conservative_impl_trait)]
#![feature(nonzero)]
#![feature(plugin)]
#![feature(proc_macro)]
#![feature(raw)]
#![feature(step_by)]

View file

@ -8,7 +8,6 @@
#![feature(box_syntax)]
#![feature(mpsc_select)]
#![feature(plugin)]
#![feature(proc_macro)]
#![plugin(plugins)]

View file

@ -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)]
#![feature(plugin)]
#![plugin(plugins)]
#![deny(unsafe_code)]

View file

@ -5,7 +5,6 @@
#![feature(box_syntax)]
#![feature(mpsc_select)]
#![feature(plugin)]
#![feature(proc_macro)]
#![plugin(plugins)]
#![deny(unsafe_code)]

View file

@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![feature(box_syntax)]
#![feature(proc_macro)]
#![feature(slice_patterns)]
#![feature(step_by)]

View file

@ -5,7 +5,6 @@
#![cfg_attr(not(target_os = "windows"), feature(alloc_jemalloc))]
#![feature(box_syntax)]
#![feature(plugin)]
#![feature(proc_macro)]
#![plugin(plugins)]
#![deny(unsafe_code)]

View file

@ -7,7 +7,7 @@
//! modules won't have to depend on `profile`.
#![feature(box_syntax)]
#![feature(plugin, proc_macro)]
#![feature(plugin)]
#![plugin(plugins)]
#![deny(unsafe_code)]

View file

@ -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/. */
#![feature(proc_macro)]
#![feature(step_trait)]
#![deny(unsafe_code)]

View file

@ -12,7 +12,6 @@
#![feature(on_unimplemented)]
#![feature(optin_builtin_traits)]
#![feature(plugin)]
#![feature(proc_macro)]
#![feature(slice_patterns)]
#![feature(stmt_expr_attributes)]
#![feature(try_from)]

View file

@ -10,7 +10,6 @@
#![feature(box_syntax)]
#![feature(nonzero)]
#![feature(plugin)]
#![feature(proc_macro)]
#![plugin(plugins)]
extern crate app_units;

View file

@ -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)]
#![feature(plugin)]
#![plugin(plugins)]
#![deny(missing_docs)]
#![deny(unsafe_code)]

View file

@ -23,8 +23,6 @@
//! [cssparser]: ../cssparser/index.html
//! [selectors]: ../selectors/index.html
#![cfg_attr(feature = "servo", feature(proc_macro))]
#![deny(warnings)]
#![deny(missing_docs)]

View file

@ -12,7 +12,6 @@
#![deny(unsafe_code, missing_docs)]
#![cfg_attr(feature = "servo", feature(plugin))]
#![cfg_attr(feature = "servo", feature(proc_macro))]
extern crate app_units;
#[macro_use]

View file

@ -8,7 +8,6 @@
#![crate_type = "rlib"]
#![cfg_attr(feature = "servo", feature(plugin))]
#![cfg_attr(feature = "servo", feature(proc_macro))]
#[cfg(feature = "servo")] extern crate serde;
#[cfg(feature = "servo")] #[macro_use] extern crate serde_derive;

View file

@ -1 +1 @@
2016-12-29
2017-01-06