[package] name = "systray" version = "0.4.0" authors = ["Kyle Machulis "] description = "Rust library for making minimal cross-platform systray GUIs" license = "BSD-3-Clause" homepage = "http://github.com/qdot/systray-rs" repository = "https://github.com/qdot/systray-rs.git" readme = "README.md" keywords = ["gui"] edition = "2018" [dependencies] log= "0.4.8" [target.'cfg(target_os = "windows")'.dependencies] winapi= { version = "0.3.8", features = ["shellapi", "libloaderapi", "errhandlingapi", "impl-default"] } libc= "0.2.66" [target.'cfg(target_os = "linux")'.dependencies] gtk= "0.8.1" glib= "0.9.3" libappindicator= "0.5.1" # [target.'cfg(target_os = "macos")'.dependencies] # objc="*" # cocoa="*" # core-foundation="*"