diff options
Diffstat (limited to 'components/gfx/lib.rs')
-rw-r--r-- | components/gfx/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index 71afd785ed6..2895750c1a2 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -22,11 +22,11 @@ extern crate stb_image; extern crate png; extern crate serialize; #[phase(plugin)] -extern crate servo_macros = "macros"; -extern crate servo_net = "net"; +extern crate "macros" as servo_macros; +extern crate "net" as servo_net; #[phase(plugin, link)] -extern crate servo_util = "util"; -extern crate servo_msg = "msg"; +extern crate "util" as servo_util; +extern crate "msg" as servo_msg; extern crate style; extern crate sync; extern crate url; |