native-dialog 0.9.6

A library to display dialogs. Supports GNU/Linux, BSD Unix, macOS and Windows.
Documentation
mod app;
pub use app::*;

mod bundle;
pub use bundle::*;

mod image;
pub use image::*;

mod url;
pub use url::*;

mod text_field;
pub use text_field::*;

mod pop_up_button;
pub use pop_up_button::*;

mod window;
pub use window::*;

#[cfg(feature = "async")]
mod future;
#[cfg(feature = "async")]
pub use future::*;

mod open_panel;
pub use open_panel::*;

mod open_panel_delegate;
pub use open_panel_delegate::*;

#[cfg(feature = "async")]
mod open_panel_async;
#[cfg(feature = "async")]
pub use open_panel_async::*;

mod save_panel;
pub use save_panel::*;

mod save_panel_delegate;
pub use save_panel_delegate::*;

#[cfg(feature = "async")]
mod save_panel_async;
#[cfg(feature = "async")]
pub use save_panel_async::*;

mod alert;
pub use alert::*;

#[cfg(feature = "async")]
mod alert_async;
#[cfg(feature = "async")]
pub use alert_async::*;