diff options
author | Ravi Shankar <wafflespeanut@gmail.com> | 2015-09-24 02:12:45 +0530 |
---|---|---|
committer | Ravi Shankar <wafflespeanut@gmail.com> | 2015-09-24 02:12:45 +0530 |
commit | 889eec364b6e3df22d36581008289e6fbfb8b39f (patch) | |
tree | 056e9dbc10fb3879b4a281296fe99e88490aacc3 /components/canvas/lib.rs | |
parent | 705ad72aee58b4fc636bca3a2784c7643048336d (diff) | |
download | servo-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.rs | 17 |
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; |