notify-rust 4.0.0-alpha.2

Show desktop notifications (linux, bsd, mac). Pure Rust dbus client and server.
Documentation
[package]
name = "notify-rust"
version = "4.0.0-alpha.2"
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"
]

[dependencies]
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
dbus = "0.7"
lazy_static = {version = "1.4", optional = true}
image = {version = "0.22", optional = true}
thiserror = "1.0"
displaydoc = "0.1"

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

[features]
default = []
server = []
debug_namespace = []
images = ["image", "lazy_static"]

[dev-dependencies]
color-backtrace = "0.3"
ctor = "0.1.12"