mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 06:54:45 +03:00
8dcfbc6718
There are some other settings in there that could also help with things like the cursor theme on Wayland. Note that we don't currently subscribe to the settings changed signal: that can be done in a follow up. refs: https://github.com/wez/wezterm/issues/2258 refs: https://github.com/wez/wezterm/issues/1742
34 lines
761 B
TOML
34 lines
761 B
TOML
[package]
|
|
name = "wezterm-toast-notification"
|
|
version = "0.1.0"
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
open = "3.0"
|
|
log = "0.4"
|
|
|
|
[target.'cfg(all(not(windows), not(target_os="macos")))'.dependencies]
|
|
serde = {version="1.0", features = ["derive"]}
|
|
zbus = "2.3.0"
|
|
zvariant = "3.4"
|
|
async-std = "1.4"
|
|
futures-util = "0.3"
|
|
|
|
[target.'cfg(target_os="macos")'.dependencies]
|
|
cocoa = "0.20"
|
|
core-foundation = "0.7"
|
|
objc = "0.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version="0.33.0", features = [
|
|
"Data_Xml_Dom",
|
|
"Foundation",
|
|
"UI_Notifications",
|
|
"Win32_Foundation",
|
|
]}
|
|
xml-rs = "0.8"
|