Merge pull request #143 from tomaka/update-rustc

Update for rustc
This commit is contained in:
tomaka 2014-11-26 21:27:45 +01:00
commit 749c47d8c2
2 changed files with 1 additions and 3 deletions

View file

@ -42,8 +42,6 @@ extern crate cocoa;
extern crate core_foundation;
#[cfg(target_os = "macos")]
extern crate core_graphics;
#[cfg(target_os = "linux")]
extern crate sync;
pub use events::*;

View file

@ -6,7 +6,7 @@ use std::{mem, ptr};
use std::cell::Cell;
use std::sync::atomic::AtomicBool;
use super::ffi;
use sync::one::{Once, ONCE_INIT};
use std::sync::{Once, ONCE_INIT};
pub use self::monitor::{MonitorID, get_available_monitors, get_primary_monitor};