diff options
author | Lars Bergstrom <lars@lars.com> | 2014-03-04 09:04:51 -0800 |
---|---|---|
committer | Lars Bergstrom <lars@lars.com> | 2014-03-18 09:30:35 -0500 |
commit | bbac8aa5c3d95e70151b824ca3443f0fb4d9b5a5 (patch) | |
tree | 757452132978525ff85933ba84c2c3034fe3083e /src/components/msg/msg.rs | |
parent | caf1ed94468da3c134cc8e8f4a1b934bb353dc19 (diff) | |
download | servo-bbac8aa5c3d95e70151b824ca3443f0fb4d9b5a5.tar.gz servo-bbac8aa5c3d95e70151b824ca3443f0fb4d9b5a5.zip |
Rust upgrades
Diffstat (limited to 'src/components/msg/msg.rs')
-rw-r--r-- | src/components/msg/msg.rs | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/components/msg/msg.rs b/src/components/msg/msg.rs index 1315979ac18..cd874a69514 100644 --- a/src/components/msg/msg.rs +++ b/src/components/msg/msg.rs @@ -7,16 +7,17 @@ #[feature(managed_boxes)]; -extern mod azure; -extern mod extra; -extern mod geom; -extern mod layers; -extern mod std; +extern crate azure; +extern crate extra; +extern crate geom; +extern crate layers; +extern crate serialize; +extern crate std; #[cfg(target_os="macos")] -extern mod core_foundation; +extern crate core_foundation; #[cfg(target_os="macos")] -extern mod io_surface; +extern crate io_surface; pub mod compositor_msg; pub mod constellation_msg; |