msgbox 0.6.0

Simple, cross-platform message box GUI library. All it does is to show a message box modal with a OK button, which runs synchronously. All the other jobs stop until the user responds. It runs fine with OpenGL windows already open. It supports multi-platform, and maintains separate dependencies per platform, thus light-weight. - Synchronous Message Modal - Multi-platform (Linux GTK3+, Windows and OSX) - Light-weight
Documentation
extern crate thiserror;

pub mod common;
pub use common::{IconType, MsgBoxError};

/**
 * GTK+3 (Default)
 */
#[cfg(not(any(target_os = "windows", target_os = "macos")))]
extern crate gtk;

#[cfg(not(any(target_os = "windows", target_os = "macos")))]
extern crate glib;

#[cfg(not(any(target_os = "windows", target_os = "macos")))]
mod linux;

#[cfg(not(any(target_os = "windows", target_os = "macos")))]
pub use linux::*;

/**
 * Cocoa
 */
#[cfg(target_os = "macos")]
#[macro_use]
extern crate objc;

#[cfg(target_os = "macos")]
extern crate cocoa;

#[cfg(target_os = "macos")]
mod macos;

#[cfg(target_os = "macos")]
pub use macos::*;

/**
 * WinAPI
 */
#[cfg(target_os = "windows")]
extern crate winapi;

#[cfg(target_os = "windows")]
mod windows;
#[cfg(target_os = "windows")]
pub use windows::*;