-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
28 lines (26 loc) · 1.35 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
[package]
name = "gamescope-dbus"
version = "1.7.0"
edition = "2021"
license = "GPL-3.0-or-later"
description = "Daemon for interacting with Gamescope over DBus"
[package.metadata.generate-rpm]
assets = [
{ source = "./target/release/gamescope-dbus", dest = "/usr/bin/gamescope-dbus", mode = "755" },
{ source = "./rootfs/usr/share/dbus-1/session.d/org.shadowblip.Gamescope.conf", dest = "/usr/share/dbus-1/session.d/org.shadowblip.Gamescope.conf", mode = "644" },
{ source = "./rootfs/usr/share/dbus-1/services/org.shadowblip.Gamescope.service", dest = "/usr/share/dbus-1/services/org.shadowblip.Gamescope.service", mode = "644" },
{ source = "./rootfs/usr/lib/systemd/user/gamescope-dbus.service", dest = "/usr/lib/systemd/user/gamescope-dbus.service", mode = "644" },
]
[dependencies]
log = "0.4.22"
simple_logger = "5.0.0"
tokio = { version = "*", features = ["full"] }
wayland-client = "0.31.6"
zbus = { version = "3.15.2", default-features = false, features = ["tokio"] }
zbus_macros = "3.15.2"
inotify = "0.11.0"
gamescope-wayland-client = { git = "https://github.com/ShadowBlip/gamescope-wayland-client.git", version = "0.1.0" }
gamescope-x11-client = { git = "https://github.com/ShadowBlip/gamescope-x11-client.git", rev = "9526a6e0d684d9530e8705f7f1a53efa401350f3" }
serde = "1.0.214"
nix = { version = "0.29.0", features = ["user"] }
tokio-stream = "0.1.17"