forked from ErikReider/SwayOSD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 860 Bytes
/
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 = "swayosd"
version = "0.1.0"
edition = "2021"
[[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
[dependencies]
# Config dependencies
toml = "0.8"
serde = "1"
serde_derive = "1"
# GUI Dependencies
gtk = "0.17.1"
gtk-layer-shell = "0.6.1"
shrinkwraprs = "0.3.0"
cascade = "1.0.1"
pulse = { version = "2.26.0", package = "libpulse-binding" }
pulsectl-rs = "0.3.2"
substring = "1.4.5"
lazy_static = "1.4.0"
zbus = "4"
# Backend Dependencies
input = "0.8"
libc = "0.2.147"
evdev-rs = "0.6.1"
async-std = "1.12.0"
nix = "0.26.2"
blight = "0.7.0"
anyhow = "1.0.75"
thiserror = "1.0.49"
mpris = "2.0.1"