Auto merge of #8692 - GuillaumeGomez:patch-1, r=Wafflespeanut

Ensure crate are alphabetically sorted

cc @nox

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8692)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-11-28 19:34:11 +05:30
commit dbff1ab336
22 changed files with 111 additions and 108 deletions

View file

@ -20,19 +20,11 @@
#![plugin(plugins)]
#![plugin(serde_macros)]
extern crate alloc;
extern crate app_units;
extern crate azure;
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
#[macro_use]
extern crate profile_traits;
#[macro_use]
extern crate util;
extern crate alloc;
extern crate azure;
extern crate canvas_traits;
// Mac OS-specific library dependencies
@ -57,9 +49,15 @@ extern crate harfbuzz_sys as harfbuzz;
extern crate ipc_channel;
extern crate layers;
#[macro_use]
extern crate lazy_static;
extern crate libc;
#[macro_use]
extern crate log;
extern crate msg;
extern crate net_traits;
#[macro_use]
extern crate profile_traits;
extern crate rand;
extern crate rustc_serialize;
extern crate script_traits;
@ -75,6 +73,8 @@ extern crate style;
extern crate time;
extern crate unicode_script;
extern crate url;
#[macro_use]
extern crate util;
pub use paint_context::PaintContext;