status bar
git clone https://git.lucas.co/cce-status-interface.git
Cargo.toml (767B)
1 [package]
2 name = "cce-status-interface"
3 version = "0.1.0"
4 edition = "2021"
5
6 [dependencies]
7 cce-ui = { git = "https://github.com/lsgalante/cce-ui.git", rev = "f3c970be244ad54121021a8223986ba553e09838" }
8 smithay-client-toolkit = "0.19.2"
9 calloop = "0.13.0"
10 calloop-wayland-source = "0.3.0"
11 wayland-client = { version = "0.31", features = ["system"] }
12 xkeysym = "0.2"
13 # Real dependency: stats.rs blocks on the async volume read.
14 pollster = "0.4"
15 tokio = { version = "1", features = ["full"] }
16 serde = { version = "1", features = ["derive"] }
17 serde_json = "1"
18 chrono = "0.4"
19 tokio-stream = "0.1"
20 zbus = "4"
21 resvg = "0.41.0"
22 png = "0.17"
23 log = "0.4"
24 env_logger = "0.11"
25 kdl = "4.6"
26 # Real dependency: PR_SET_PDEATHSIG on the `pactl subscribe` child.
27 libc = "0.2"
28
29
30
31
32
33
34
35
36