mirror of
https://github.com/servo/servo.git
synced 2025-09-07 05:28:21 +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
|
@ -18,7 +18,7 @@ energymon = {git = "https://github.com/energymon/energymon-rust.git", optional =
|
|||
energy-monitor = {version = "0.2.0", optional = true}
|
||||
plugins = {path = "../plugins"}
|
||||
serde = "0.8"
|
||||
serde_macros = "0.8"
|
||||
serde_derive = "0.8"
|
||||
signpost = {git = "https://github.com/pcwalton/signpost.git"}
|
||||
time = "0.1.12"
|
||||
util = {path = "../util"}
|
||||
|
|
|
@ -7,13 +7,15 @@
|
|||
//! modules won't have to depend on `profile`.
|
||||
|
||||
#![feature(box_syntax)]
|
||||
#![feature(custom_derive, plugin)]
|
||||
#![plugin(plugins, serde_macros)]
|
||||
#![feature(custom_derive, plugin, proc_macro, rustc_attrs, structural_match)]
|
||||
#![plugin(plugins)]
|
||||
|
||||
#![deny(unsafe_code)]
|
||||
|
||||
extern crate ipc_channel;
|
||||
extern crate serde;
|
||||
#[macro_use]
|
||||
extern crate serde_derive;
|
||||
extern crate signpost;
|
||||
extern crate util;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue