[package]
edition = "2024"
rust-version = "1.85.0"
name = "notify-icon"
version = "0.1.4"
authors = ["kkent030315"]
build = false
exclude = [
".vscode/*",
".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A safe, ergonomic Rust wrapper around the Windows Shell_NotifyIcon API for managing system tray icons on Windows platforms"
readme = "README.md"
keywords = [
"windows",
"notification",
"toast",
"notify",
"tray",
]
license = "MIT"
repository = "https://github.com/kkent030315/notify-icon-rs"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[lib]
name = "notify_icon"
path = "src/lib.rs"
doctest = true
[dependencies]
[target.'cfg(target_env = "gnu")'.dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Shell",
]
[target.'cfg(target_env = "msvc")'.dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Shell",
]