From 44c15bf6e6d459d29a0385eefc357e02e21a89e8 Mon Sep 17 00:00:00 2001 From: DavidPartouche Date: Tue, 19 Aug 2014 18:18:59 +0200 Subject: Fixed broken build with latest rust update (use 'foo' = 'bar' syntax error) --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 4568ccb..a27337f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,11 +26,11 @@ pub use events::*; use std::default::Default; #[cfg(target_os = "windows")] -use winimpl = win32; +use win32 as winimpl; #[cfg(target_os = "linux")] -use winimpl = x11; +use x11 as winimpl; #[cfg(target_os = "macos")] -use winimpl = osx; +use osx as winimpl; #[cfg(target_os = "windows")] mod win32; -- cgit v1.2.3