-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (43 loc) · 1.05 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
[package]
name = "swayosd"
version = "0.3.2"
edition = "2024"
[[bin]]
name = "swayosd-server"
path = "src/server/main.rs"
[[bin]]
name = "swayosd-client"
path = "src/client/main.rs"
[[bin]]
name = "swayosd-libinput-backend"
path = "src/input-backend/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
[dependencies]
# Config dependencies
toml = "0.8"
serde = "1"
serde_derive = "1"
# GUI Dependencies
gtk = { package = "gtk4", version = "0.10.0" }
gtk-layer-shell = { package = "gtk4-layer-shell", version = "0.6.3" }
shrinkwraprs = "0.3.0"
cascade = "1.0.1"
pulse = { version = "2.30.1", package = "libpulse-binding" }
zbus = "5"
# Backend Dependencies
input = "0.9"
libc = "0.2.174"
evdev-rs = "0.6.2"
async-std = "1.13.1"
nix = { version = "0.30", features = ["poll"] }
blight = "0.7.1"
anyhow = "1.0.98"
thiserror = "2.0.12"
async-channel = "2.5.0"
mpris = "2.0.1"
runtime-format = "0.1.3"
strfmt = "0.2.4"
clap = { version = "4.5.53", features = ["derive"] }
playerctld = "0.1.1"