2020-12-13 11:17:10 +03:00
|
|
|
[package]
|
|
|
|
name = "wezterm-toast-notification"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
|
|
edition = "2018"
|
2020-12-16 08:21:23 +03:00
|
|
|
build = "build.rs"
|
2020-12-13 11:17:10 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-07-26 18:15:02 +03:00
|
|
|
open = "2.0"
|
2021-02-18 09:06:12 +03:00
|
|
|
log = "0.4"
|
2020-12-13 11:17:10 +03:00
|
|
|
|
2021-05-30 21:51:57 +03:00
|
|
|
[target.'cfg(all(not(windows), not(target_os="macos")))'.dependencies]
|
2021-02-17 09:24:23 +03:00
|
|
|
serde = {version="1.0", features = ["derive"]}
|
2022-01-10 05:29:29 +03:00
|
|
|
zbus = "2.0.0"
|
2021-12-27 20:33:41 +03:00
|
|
|
zvariant = "3.0"
|
2021-05-30 21:51:57 +03:00
|
|
|
async-std = "1.4"
|
|
|
|
futures-util = "0.3"
|
2020-12-13 11:17:10 +03:00
|
|
|
|
2020-12-16 08:21:23 +03:00
|
|
|
[target.'cfg(target_os="macos")'.dependencies]
|
|
|
|
cocoa = "0.20"
|
|
|
|
core-foundation = "0.7"
|
|
|
|
objc = "0.2"
|
|
|
|
|
2020-12-13 11:17:10 +03:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-03-07 03:01:59 +03:00
|
|
|
windows = { version="0.33.0", features = [
|
|
|
|
"Data_Xml_Dom",
|
|
|
|
"Foundation",
|
|
|
|
"UI_Notifications",
|
|
|
|
"Win32_Foundation",
|
|
|
|
]}
|
2021-03-15 01:23:42 +03:00
|
|
|
xml-rs = "0.8"
|