native-dialog 0.6.4

A library to display dialogs. Supports GNU/Linux, BSD Unix, macOS and Windows.
Documentation
1
2
3
4
5
6
7
8
#[cfg(test)]
use crate::dialog_impl::gnu::message;

#[test]
fn test_kdialog_version() {
    let version = message::get_kdialog_version().unwrap();
    println!("{}, {}, {}", version.0, version.1, version.2);
}