toumei 1.1.0

Detects system tray transparency on macOS, Windows, and Linux
Documentation
// src/platforms/mod.rs

#[cfg_attr(target_os = "macos", path = "macos.rs")]
#[cfg_attr(target_os = "windows", path = "windows.rs")]
#[cfg_attr(any(
    target_os = "linux",
    target_os = "freebsd",
    target_os = "dragonfly",
    target_os = "netbsd",
    target_os = "openbsd"
), path = "freedesktop.rs")]
#[cfg_attr(not(any(
    target_os = "macos",
    target_os = "windows",
    target_os = "linux",
    target_os = "freebsd",
    target_os = "dragonfly",
    target_os = "netbsd",
    target_os = "openbsd"
)), path = "unsupported.rs")]
mod platform;

pub use platform::detect_tray_transparency;