-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "keypeek-applet"
version = "0.2.1"
edition = "2024"
license = "MIT"
description = "A shortcuts viewer applet"
repository = "https://github.com/l-const/keypeek-applet"
[dependencies]
cosmic-config = { git = "https://github.com/pop-os/libcosmic", package = "cosmic-config", version = "1.0.0" }
cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon", package = "cosmic-settings-config", rev = "ef024bfd06bf9fbd57246a25c91d1fdd28153d05" }
xkbcommon = "0.8"
futures-util = "0.3.31"
i18n-embed-fl = "0.10"
rust-embed = "8.7.2"
tokio = { version = "1.48.0", features = ["full"] }
log = "0.4.29"
env_logger = "0.11.8"
anyhow = "1.0.100"
notify = "8.2.0"
[dependencies.i18n-embed]
version = "0.16"
features = ["fluent-system", "desktop-requester"]
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic"
# See https://github.com/pop-os/libcosmic/blob/master/Cargo.toml for available features.
features = [
# Applet support
"applet",
"applet-token",
# Uses cosmic-settings-daemon to watch for config file changes
"dbus-config",
# Support creating additional application windows.
"multi-window",
# Uses tokio as the executor for the runtime
"tokio",
# Add Wayland support to winit
"wayland",
# Windowing support for X11, Windows, Mac, & Redox
"winit",
]