systray 0.4.0

Rust library for making minimal cross-platform systray GUIs
1
2
3
4
5
6
7
8
9
10
11
#[cfg(target_os = "windows")]
#[path = "win32/mod.rs"]
pub mod api;

#[cfg(target_os = "linux")]
#[path = "linux/mod.rs"]
pub mod api;

#[cfg(target_os = "macos")]
#[path = "cocoa/mod.rs"]
pub mod api;