servo: Merge #3438 - Upgrade Rust (from servo:rustup)

Source-Repo: https://github.com/servo/servo
Source-Revision: 045328c8e94f5bdfcd67105c5dfa9209f4cd501c
This commit is contained in:
Simon Sapin
2014-09-20 15:35:08 -07:00
parent 60b0bd5f8d
commit e245f210fb
111 changed files with 876 additions and 1086 deletions

View File

@@ -8,7 +8,7 @@
#![feature(globs, macro_rules, struct_variant, phase, unsafe_destructor)]
#![deny(unused_imports, unused_variable)]
#![allow(non_snake_case_functions)]
#![allow(non_snake_case)]
#![doc="The script crate contains all matters DOM."]
@@ -33,12 +33,12 @@ extern crate time;
extern crate canvas;
extern crate script_traits;
#[phase(plugin)]
extern crate servo_macros = "macros";
extern crate servo_net = "net";
extern crate servo_util = "util";
extern crate "macros" as servo_macros;
extern crate "net" as servo_net;
extern crate "util" as servo_util;
extern crate style;
extern crate sync;
extern crate servo_msg = "msg";
extern crate "msg" as servo_msg;
extern crate url;
extern crate uuid;