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/msg/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/msg/lib.rs')
-rw-r--r-- | components/msg/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/msg/lib.rs b/components/msg/lib.rs index e5be66832f0..c989835e7ea 100644 --- a/components/msg/lib.rs +++ b/components/msg/lib.rs @@ -6,9 +6,9 @@ #![plugin(serde_macros, plugins)] extern crate app_units; +extern crate azure; #[macro_use] extern crate bitflags; -extern crate azure; extern crate canvas_traits; #[cfg(target_os = "macos")] extern crate core_foundation; |