-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
44 lines (41 loc) · 1.58 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
[package]
name = "cosmic-settings-daemon"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-or-later"
[workspace]
members = ["config"]
[dependencies]
anyhow = "1.0.89"
clap = "4.5.18"
dirs = "5.0.1"
notify = "6.1.1"
tokio = { version = "1.40.0", features = ["macros", "net", "rt"] }
udev = "0.8.0"
zbus = { version = "4.4", default-features = false, features = ["tokio"] }
tokio-stream = "0.1.16"
sunrise = "1.0.1"
geoclue2 = { git = "https://github.com/pop-os/dbus-settings-bindings" }
cosmic-theme = { git = "https://github.com/pop-os/libcosmic", features = [
"export",
] }
cosmic-comp-config = { git = "https://github.com/pop-os/cosmic-comp" }
cosmic-config = { git = "https://github.com/pop-os/libcosmic" }
chrono = "0.4.38"
libcosmic = { git = "https://github.com/pop-os/libcosmic" }
acpid_plug = "0.1.2"
upower_dbus = { git = "https://github.com/pop-os/dbus-settings-bindings" }
locale1 = { git = "https://github.com/pop-os/dbus-settings-bindings" }
notify-rust = "4.11.3"
walkdir = "2.5.0"
memoize = "0.4.2"
futures-util = "0.3.30"
ctrlc = { version = "3.4.5", features = ["termination"] }
# For development and testing purposes
# [patch.'https://github.com/pop-os/libcosmic']
# libcosmic = { git = "https://github.com/pop-os/libcosmic//", branch = "fix-gtk-rgba" }
# cosmic-config = { git = "https://github.com/pop-os/libcosmic//", branch = "fix-gtk-rgba" }
# cosmic-theme = { git = "https://github.com/pop-os/libcosmic//", branch = "fix-gtk-rgba" }
# libcosmic = { path = "../libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" }
# cosmic-theme = { path = "../libcosmic/cosmic-theme" }