-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
96 lines (80 loc) · 2.58 KB
/
Copy pathCargo.toml
File metadata and controls
96 lines (80 loc) · 2.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[package]
name = "singularity"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-only"
description = "Unified quick-settings panel applet for COSMIC"
repository = "https://github.com/sreevikramr/singularity"
[dependencies]
futures = "0.3"
futures-util = "0.3.31"
i18n-embed-fl = "0.10"
log = "0.4"
rust-embed = "8.7.2"
tokio = { version = "1", features = ["rt", "process", "time", "sync", "macros", "rt-multi-thread"] }
tracing = "0.1"
url = "2"
urlencoding = "2.1.3"
serde = { version = "1", features = ["derive"] }
tracing-subscriber = "0.3.22"
anyhow = "1"
async-fn-stream = "0.3"
indexmap = "2.13.0"
rustc-hash = "2"
secure-string = "0.3.0"
uuid = { version = "1", features = ["v4"] }
fastrand = "2.3.0"
[dependencies.bluer]
version = "0.17"
features = ["bluetoothd", "id"]
[dependencies.i18n-embed]
version = "0.16"
features = ["fluent-system", "desktop-requester"]
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic"
rev = "1dc9aa37ed8b8670217f7b9f82d40b3476204ad1"
features = [
"applet",
"applet-token",
"dbus-config",
"multi-window",
"tokio",
"wayland",
"winit",
"desktop",
]
[dependencies.zbus]
version = "5"
# MPRIS media player D-Bus bindings
[dependencies.mpris2-zbus]
git = "https://github.com/pop-os/dbus-settings-bindings"
rev = "0fa672f8dadb884001ef9a251b149ed432879629"
# NM secret agent for WiFi password handling
[dependencies.nm-secret-agent-manager]
git = "https://github.com/pop-os/dbus-settings-bindings"
rev = "0fa672f8dadb884001ef9a251b149ed432879629"
# UPower battery subscription
[dependencies.cosmic-settings-upower-subscription]
path = "crates/cosmic-subscriptions/upower"
# UPower D-Bus bindings (needed for types)
[dependencies.upower_dbus]
git = "https://github.com/pop-os/dbus-settings-bindings"
rev = "0fa672f8dadb884001ef9a251b149ed432879629"
# Settings daemon (brightness) subscription
[dependencies.cosmic-settings-daemon-subscription]
path = "crates/cosmic-subscriptions/settings-daemon"
# Network manager subscription
[dependencies.cosmic-settings-network-manager-subscription]
path = "crates/cosmic-subscriptions/network-manager"
# Sound/Audio subscription
[dependencies.cosmic-settings-sound-subscription]
path = "crates/cosmic-subscriptions/sound"
# Network manager D-Bus bindings (needed for types)
[dependencies.cosmic-dbus-networkmanager]
git = "https://github.com/pop-os/dbus-settings-bindings"
rev = "0fa672f8dadb884001ef9a251b149ed432879629"
# Airplane mode subscription
[dependencies.cosmic-settings-airplane-mode-subscription]
path = "crates/cosmic-subscriptions/airplane-mode"
[dev-dependencies]
serde_json = "1.0.149"