mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update to Rust 1.14.0-nightly (19ac57926 2016-10-08)
A cargo bump and a switch to serde_derive is needed to do this rustup.
This commit is contained in:
parent
b5a04a67fb
commit
1854566683
45 changed files with 381 additions and 352 deletions
|
@ -6,8 +6,8 @@
|
|||
//! The traits are here instead of in script so that these modules won't have
|
||||
//! to depend on script.
|
||||
|
||||
#![feature(custom_derive, plugin)]
|
||||
#![plugin(heapsize_plugin, plugins, serde_macros)]
|
||||
#![feature(custom_derive, plugin, proc_macro, rustc_attrs, structural_match)]
|
||||
#![plugin(heapsize_plugin, plugins)]
|
||||
#![deny(missing_docs)]
|
||||
#![deny(unsafe_code)]
|
||||
|
||||
|
@ -28,6 +28,8 @@ extern crate offscreen_gl_context;
|
|||
extern crate profile_traits;
|
||||
extern crate rustc_serialize;
|
||||
extern crate serde;
|
||||
#[macro_use]
|
||||
extern crate serde_derive;
|
||||
extern crate style_traits;
|
||||
extern crate time;
|
||||
extern crate url;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue