sorted the extern crate, mod & use declarations

This commit is contained in:
Ravi Shankar 2015-09-24 02:12:45 +05:30
parent 705ad72aee
commit 889eec364b
194 changed files with 804 additions and 870 deletions

View file

@ -18,15 +18,18 @@
#![feature(step_trait)]
#![feature(zero_one)]
#![plugin(serde_macros)]
#![plugin(plugins, serde_macros)]
#[macro_use] extern crate log;
#[macro_use] extern crate lazy_static;
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;
#[macro_use] extern crate bitflags;
#[macro_use] extern crate cssparser;
extern crate azure;
extern crate euclid;
extern crate getopts;
extern crate html5ever;
@ -35,8 +38,8 @@ extern crate ipc_channel;
extern crate js;
extern crate layers;
extern crate libc;
extern crate num as num_lib;
extern crate num_cpus;
extern crate num as num_lib;
extern crate rand;
extern crate rustc_serialize;
extern crate selectors;