From f32abdb4964ce676a0e6e6883b38458e1fceeedc Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Fri, 27 Sep 2013 15:32:50 -0600 Subject: [PATCH] Upgrade Rust. --- alert.rc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/alert.rc b/alert.rc index bf691b2..aefa4e7 100644 --- a/alert.rc +++ b/alert.rc @@ -23,11 +23,11 @@ pub use macos::Alert; pub use android::Alert; #[cfg(target_os="linux")] -mod linux; +pub mod linux; #[cfg(target_os="macos")] -mod macos; +pub mod macos; #[cfg(target_os="android")] -mod android; +pub mod android; #[cfg(testalert)] mod test;