aboutsummaryrefslogtreecommitdiffstats
path: root/components/canvas/lib.rs
diff options
context:
space:
mode:
authorRavi Shankar <wafflespeanut@gmail.com>2015-09-24 02:12:45 +0530
committerRavi Shankar <wafflespeanut@gmail.com>2015-09-24 02:12:45 +0530
commit889eec364b6e3df22d36581008289e6fbfb8b39f (patch)
tree056e9dbc10fb3879b4a281296fe99e88490aacc3 /components/canvas/lib.rs
parent705ad72aee58b4fc636bca3a2784c7643048336d (diff)
downloadservo-889eec364b6e3df22d36581008289e6fbfb8b39f.tar.gz
servo-889eec364b6e3df22d36581008289e6fbfb8b39f.zip
sorted the extern crate, mod & use declarations
Diffstat (limited to 'components/canvas/lib.rs')
-rw-r--r--components/canvas/lib.rs17
1 files changed, 9 insertions, 8 deletions
diff --git a/components/canvas/lib.rs b/components/canvas/lib.rs
index 443c9b901f8..4ab241072e4 100644
--- a/components/canvas/lib.rs
+++ b/components/canvas/lib.rs
@@ -6,22 +6,23 @@
#![feature(nonzero)]
#![feature(slice_bytes)]
#![feature(vec_push_all)]
+#![feature(plugin)]
+#![plugin(plugins)]
-extern crate core;
-extern crate canvas_traits;
+#[macro_use]
+extern crate log;
extern crate azure;
+extern crate canvas_traits;
+extern crate core;
extern crate cssparser;
extern crate euclid;
extern crate gfx_traits;
-extern crate ipc_channel;
-extern crate util;
extern crate gleam;
-extern crate num;
+extern crate ipc_channel;
extern crate layers;
+extern crate num;
extern crate offscreen_gl_context;
-
-#[macro_use]
-extern crate log;
+extern crate util;
pub mod canvas_paint_task;
pub mod webgl_paint_task;