rustydialogs 0.4.2

Provides a simple and cross-platform way to display native dialog boxes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::*;

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

#[cfg(not(feature = "appkit"))]
mod osascript;
#[cfg(not(feature = "appkit"))]
pub use osascript::*;