* chore: add minimize applet skeleton * fix(minimize): desktop typo * wip: minimize applet * feat: include window images, and overlay their icon * cleanup * fix: add minimize applet to workspace * chore: add host wayland display to desktop file for minimize applet * chore: Cargo.lock * cleanup: fix typos * fix: don't hide minimized apps in app-list
40 lines
1.1 KiB
TOML
40 lines
1.1 KiB
TOML
[package]
|
|
name = "cosmic-applet-notifications"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
libcosmic.workspace = true
|
|
cosmic-time.workspace = true
|
|
nix = "0.26"
|
|
tokio = { version = "1.24.1", features = [
|
|
"sync",
|
|
"rt",
|
|
"tracing",
|
|
"macros",
|
|
"net",
|
|
"io-util",
|
|
"io-std",
|
|
] }
|
|
cosmic-notifications-util = { git = "https://github.com/pop-os/cosmic-notifications" }
|
|
cosmic-notifications-config = { git = "https://github.com/pop-os/cosmic-notifications" }
|
|
# cosmic-notifications-util = { path = "../../cosmic-notifications-daemon/cosmic-notifications-util" }
|
|
# cosmic-notifications-config = { path = "../../cosmic-notifications-daemon/cosmic-notifications-config" }
|
|
tracing = "0.1"
|
|
ron = "0.8"
|
|
sendfd = { version = "0.4", features = ["tokio"] }
|
|
bytemuck = "1"
|
|
tracing-subscriber.workspace = true
|
|
tracing-log.workspace = true
|
|
zbus.workspace = true
|
|
# Application i18n
|
|
i18n-embed = { version = "0.13.4", features = [
|
|
"fluent-system",
|
|
"desktop-requester",
|
|
] }
|
|
i18n-embed-fl = "0.6.4"
|
|
rust-embed = "6.3.0"
|
|
rust-embed-utils = "7.5.0"
|
|
url = "2.4.0"
|