aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2015-11-28 19:34:11 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2015-11-28 19:34:11 +0530
commitdbff1ab33636bc7d60a4c97b63f39b59985726ce (patch)
tree1249b1ec107b13778a7665c8a77f138afb5505e8 /components/script/lib.rs
parent9f3d6e77b856e9537fe5ebdec32967180ff2d341 (diff)
parent6e7de62b38a04e614c60e864c8d100bf3e72304f (diff)
downloadservo-dbff1ab33636bc7d60a4c97b63f39b59985726ce.tar.gz
servo-dbff1ab33636bc7d60a4c97b63f39b59985726ce.zip
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 -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs20
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;