This batch of changes upgrades Servo to work with the Rust upgrade as of

April 10, 2014. The main changes are to privacy, to work around the
issues with incorrect bounds on the libstd `Arc<Mutex<T>>`, and the
various API changes strewn throughout the libraries.
This commit is contained in:
Lars Bergstrom 2014-04-05 10:11:38 +02:00
parent 4942cc76bd
commit 948daf2422
226 changed files with 1478 additions and 1407 deletions

View file

@ -2,17 +2,17 @@
* 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/. */
#[crate_id = "github.com/mozilla/servo#script:0.1"];
#[crate_type = "lib"];
#[crate_type = "dylib"];
#[crate_type = "rlib"];
#![crate_id = "github.com/mozilla/servo#script:0.1"]
#![crate_type = "lib"]
#![crate_type = "dylib"]
#![crate_type = "rlib"]
#[comment = "The Servo Parallel Browser Project"];
#[license = "MPL"];
#![comment = "The Servo Parallel Browser Project"]
#![license = "MPL"]
#[feature(globs, macro_rules, struct_variant, phase)];
#![feature(globs, macro_rules, struct_variant, phase)]
#[feature(phase)];
#![feature(phase)]
#[phase(syntax, link)]
extern crate log;
@ -21,6 +21,7 @@ extern crate geom;
extern crate hubbub;
extern crate encoding;
extern crate js;
extern crate libc;
extern crate native;
extern crate serialize;
#[phase(syntax)]