diff options
author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2015-11-26 01:23:11 +0100 |
---|---|---|
committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2015-11-28 03:11:08 +0100 |
commit | 6e7de62b38a04e614c60e864c8d100bf3e72304f (patch) | |
tree | de97525c5e08f1fe84691b6da5b1a03a033fc960 /components/script/lib.rs | |
parent | f96e8ce9e8c0a2c9de9574f538718defdcd93c11 (diff) | |
download | servo-6e7de62b38a04e614c60e864c8d100bf3e72304f.tar.gz servo-6e7de62b38a04e614c60e864c8d100bf3e72304f.zip |
Add check up on extern crate order and sort extern crates alphabetically
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 4f1d9f66cd0..583f837bfbf 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -33,19 +33,10 @@ #![plugin(plugins)] +extern crate angle; extern crate app_units; #[macro_use] extern crate bitflags; -#[macro_use] -extern crate log; -#[macro_use] -extern crate profile_traits; -#[macro_use] -extern crate style; -extern crate style_traits; -#[macro_use] -extern crate util; -extern crate angle; extern crate canvas; extern crate canvas_traits; extern crate caseless; @@ -61,10 +52,14 @@ extern crate image; extern crate ipc_channel; extern crate js; extern crate libc; +#[macro_use] +extern crate log; extern crate msg; extern crate net_traits; extern crate num; extern crate offscreen_gl_context; +#[macro_use] +extern crate profile_traits; extern crate rand; extern crate rustc_serialize; extern crate rustc_unicode; @@ -73,10 +68,15 @@ extern crate script_traits; extern crate serde; extern crate smallvec; #[macro_use(atom, ns)] extern crate string_cache; +#[macro_use] +extern crate style; +extern crate style_traits; extern crate tendril; extern crate time; extern crate unicase; extern crate url; +#[macro_use] +extern crate util; extern crate uuid; extern crate websocket; |