17 lines
495 B
TOML
17 lines
495 B
TOML
[package]
|
|
name = "rig-input"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
# Replays harness `.touch` files through Wayland's virtual-pointer protocol;
|
|
# headless sway has no input devices for coordinate-driving tools to move.
|
|
[[bin]]
|
|
name = "replay-touch"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# Share the harness parser so both layers interpret recordings identically.
|
|
iris = { path = ".." }
|
|
wayland-client = "0.31.15"
|
|
wayland-protocols-wlr = { version = "0.3.12", features = ["client"] }
|