notify-rust 4.1.0

Show desktop notifications (linux, bsd, mac). Pure Rust dbus client and server.
Documentation
[package]
name = "notify-rust"
version = "4.1.0"
authors = ["Hendrik Sollich <hendrik@hoodie.de>"]
description = "Show desktop notifications (linux, bsd, mac). Pure Rust dbus client and server."
homepage = "https://github.com/hoodie/notify-rust"
repository = "https://github.com/hoodie/notify-rust"
documentation = "https://docs.rs/notify-rust/"
edition = "2018"
license = "MIT/Apache-2.0"
keywords = ["desktop", "notification", "notify", "linux", "macos"]
readme = "README.md"
include = [
  "README.md",
  "History.md",
  ".gitignore",
  ".travis.yml",
  "Cargo.toml",
  "src/**/*.rs",
  "tests/*.rs"
]

[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
dbus = { version = "0.8", optional = true }
lazy_static = { version = "1.4", optional = true }
image = { version = "0.23", optional = true }
zvariant = { version = "2.4", optional = true }
zvariant_derive = { version = "2.4", optional = true }
zbus = { version = "1.7", optional = true }
serde = { version = "1.0", optional = true }

[target.'cfg(target_os="macos")'.dependencies]
mac-notification-sys = "0.3"

[target.'cfg(target_os="windows")'.dependencies]
winrt-notification = "0.2"

[features]
default = ["d"]
server = []
d = ["dbus"]
z = ["zbus", "zvariant", "zvariant_derive", "serde"]
debug_namespace = []
images = ["image", "lazy_static"]

[dev-dependencies]
color-backtrace = "0.5"
ctor = "0.1.15"

[[example]]
name = "images"
path = "examples/images.rs"
required-features = ["images"]

[[example]]
name = "hints_server"
path = "examples/hints_server.rs"
required-features = ["server"]