Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git
verify/clients/Cargo.toml (791B)
1 [package]
2 name = "cce-verify-clients"
3 version = "0.1.0"
4 edition = "2021"
5 description = "Wayland test clients for behavioral verification in cce-shadow sessions"
6
7 [[bin]]
8 name = "vkey"
9 path = "src/bin/vkey.rs"
10
11 [[bin]]
12 name = "status-stub"
13 path = "src/bin/status_stub.rs"
14
15 [[bin]]
16 name = "float-pair"
17 path = "src/bin/float_pair.rs"
18
19 [dependencies]
20 wayland-client = "0.31"
21 wayland-protocols = { version = "0.32", features = ["client", "staging", "unstable"] }
22 wayland-protocols-misc = { version = "0.3", features = ["client"] }
23 xkbcommon = "0.8"
24 libc = "0.2"
25
26 # Deliberately NOT a member of the cce workspace: these are test clients built
27 # on demand by verify/ scripts, invisible to ccebuild and `cargo build` at the
28 # workspace root. The empty table severs workspace resolution.
29 [workspace]