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/msg/lib.rs | |
parent | 705ad72aee58b4fc636bca3a2784c7643048336d (diff) | |
download | servo-889eec364b6e3df22d36581008289e6fbfb8b39f.tar.gz servo-889eec364b6e3df22d36581008289e6fbfb8b39f.zip |
sorted the extern crate, mod & use declarations
Diffstat (limited to 'components/msg/lib.rs')
-rw-r--r-- | components/msg/lib.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/components/msg/lib.rs b/components/msg/lib.rs index 0fd0b59c304..995b1bc5587 100644 --- a/components/msg/lib.rs +++ b/components/msg/lib.rs @@ -5,25 +5,25 @@ #![feature(custom_derive, plugin)] #![plugin(serde_macros, plugins)] +#[macro_use] +extern crate bitflags; extern crate azure; -#[macro_use] extern crate bitflags; extern crate canvas_traits; +#[cfg(target_os = "macos")] +extern crate core_foundation; extern crate euclid; extern crate hyper; +#[cfg(target_os = "macos")] +extern crate io_surface; extern crate ipc_channel; extern crate layers; extern crate offscreen_gl_context; extern crate png; extern crate rustc_serialize; extern crate serde; -extern crate util; -extern crate url; extern crate style_traits; - -#[cfg(target_os = "macos")] -extern crate core_foundation; -#[cfg(target_os = "macos")] -extern crate io_surface; +extern crate url; +extern crate util; pub mod compositor_msg; pub mod constellation_msg; |