Add check up on extern crate order and sort extern crates alphabetically

This commit is contained in:
Guillaume Gomez 2015-11-26 01:23:11 +01:00
parent f96e8ce9e8
commit 6e7de62b38
22 changed files with 111 additions and 108 deletions

View file

@ -22,17 +22,13 @@
#![plugin(plugins, serde_macros)]
extern crate alloc;
extern crate app_units;
extern crate azure;
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate cssparser;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate alloc;
extern crate azure;
extern crate euclid;
extern crate getopts;
extern crate html5ever;
@ -40,9 +36,13 @@ extern crate hyper;
extern crate ipc_channel;
extern crate js;
extern crate layers;
#[macro_use]
extern crate lazy_static;
extern crate libc;
extern crate num_cpus;
#[macro_use]
extern crate log;
extern crate num as num_lib;
extern crate num_cpus;
extern crate rand;
extern crate rustc_serialize;
extern crate selectors;