-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (47 loc) · 1.87 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (47 loc) · 1.87 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
[package]
name = "qd2"
version = "0.1.2"
edition = "2024"
description = "QEMU D-Bus Display viewer and diagnostics tool"
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/thelicato/qd2"
homepage = "https://github.com/thelicato/qd2"
[dependencies]
anyhow = "1.0.102"
async-trait = "0.1.89"
clap = { version = "4.6.0", features = ["derive"] }
gtk4 = { version = "0.10.0", features = ["v4_14"] }
pixman-sys = "0.1.0"
qemu-display = "0.2.1"
serde_bytes = "0.11.19"
tokio = { version = "1.51.1", features = ["macros", "rt-multi-thread", "sync", "time"] }
zbus = "5.14.0"
[package.metadata.deb]
maintainer = "Angelo Delicato <thelicato@duck.com>"
copyright = "thelicato"
license-file = ["LICENSE", "0"]
extended-description = """\
QD2 is a Rust and GTK4 client for QEMU's D-Bus display stack. It can discover
VMs, inspect exported objects, diagnose common setup issues, and open an
interactive viewer with display, input, clipboard, audio, and reconnect
support."""
depends = "$auto"
section = "utils"
priority = "optional"
assets = [
["target/release/qd2", "usr/bin/", "755"],
["packaging/linux/qd2.desktop", "usr/share/applications/qd2.desktop", "644"],
["logo.png", "usr/share/icons/hicolor/512x512/apps/qd2.png", "644"],
["README.md", "usr/share/doc/qd2/README.md", "644"],
["LICENSE", "usr/share/doc/qd2/LICENSE", "644"],
]
[package.metadata.generate-rpm]
auto-req = "builtin"
assets = [
{ source = "target/release/qd2", dest = "/usr/bin/qd2", mode = "0755" },
{ source = "packaging/linux/qd2.desktop", dest = "/usr/share/applications/qd2.desktop", mode = "0644" },
{ source = "logo.png", dest = "/usr/share/icons/hicolor/512x512/apps/qd2.png", mode = "0644" },
{ source = "README.md", dest = "/usr/share/doc/qd2/README.md", mode = "0644", doc = true },
{ source = "LICENSE", dest = "/usr/share/doc/qd2/LICENSE", mode = "0644", doc = true },
]