user-notify 0.4.2

Show desktop notifications to end users on linux, macOS and windows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(target_os = "macos")]
pub mod mac_os;
pub mod mock;
#[cfg(target_os = "windows")]
pub mod windows;
#[cfg(any(
    target_os = "linux",
    target_os = "dragonfly",
    target_os = "freebsd",
    target_os = "openbsd",
    target_os = "netbsd"
))]
pub mod xdg;