native-dialog 0.5.4

A library to display dialogs. Supports GNU/Linux, BSD Unix, macOS and Windows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(target_os = "macos")]
pub(crate) mod mac;

#[cfg(all(
    unix,
    not(target_os = "macos"),
    not(target_os = "ios"),
    not(target_os = "android")
))]
pub(crate) mod gnu;

#[cfg(target_os = "windows")]
pub(crate) mod win;