-
Notifications
You must be signed in to change notification settings - Fork 45
/
Cargo.toml
58 lines (54 loc) · 1.55 KB
/
Cargo.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "cosmic-app-library"
version = "0.1.0"
authors = ["Ashley Wulber <[email protected]>"]
edition = "2021"
[features]
default = ["wgpu"]
wgpu = ["libcosmic/wgpu"]
[dependencies]
zbus = "4.2"
libcosmic = { git = "https://github.com/pop-os/libcosmic/", features = [
"winit",
"wayland",
"tokio",
"single-instance",
"dbus-config",
"desktop-systemd-scope",
"xdg-portal",
] }
tokio = { version = "1.17.0", features = ["sync", "rt", "process"] }
pretty_env_logger = "0.5"
log = "0.4"
once_cell = "1.9"
futures = "0.3.21"
xdg = "2.4.0"
# Application i18n
i18n-embed = { version = "0.14.1", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.8.0"
rust-embed = "8.4.0"
glob = "0.3.0"
freedesktop-desktop-entry = "0.5.2"
shlex = "1.1.0"
serde = { version = "1.0.134", features = ["derive"] }
ron = "0.8.0"
notify = "*"
anyhow = "1.0"
itertools = "0.13"
freedesktop-icons = "0.2.4"
current_locale = "0.1.1"
url = "2.4"
nix = "0.28"
clap = { version = "4.4.8", features = ["derive"] }
switcheroo-control = { git = "https://github.com/pop-os/dbus-settings-bindings" }
cosmic-app-list-config = { git = "https://github.com/pop-os/cosmic-applets" }
[profile.release]
lto = "thin"
# [patch."https://github.com/pop-os/libcosmic"]
# libcosmic = { git = "https://github.com/pop-os/libcosmic//", branch = "notifications-card" }
# cosmic-config = { git = "https://github.com/pop-os/libcosmic//", branch = "notifications-card" }
# cosmic-config = { path = "../libcosmic/cosmic-config/" }
# libcosmic = { path = "../libcosmic/" }