- New key_event/mouse_event client messages (crossterm serde) that run through the complete WM event handling on the server — remote clients get window focus, drag/resize and mouse forwarding into virtual terminals (SGR/UTF-8/X10) identical to standalone mode - tui-wm -c now forwards mouse events; previously only keyboard worked remotely - IPC unit tests + end-to-end integration test (tests/integration.py): daemon, frames, click/scroll SGR forwarding, popups, TUI-FM in a window — 12/12 passing - Document the new messages in SOCKET_API.md Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
25 lines
532 B
TOML
25 lines
532 B
TOML
[package]
|
|
name = "tui-wm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "tui-wm"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
crossterm = { version = "0.29", features = ["event-stream", "serde"] }
|
|
ratatui = "0.30"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
toml_edit = "0.22"
|
|
portable-pty = "0.9"
|
|
vt100 = "0.16"
|
|
anyhow = "1"
|
|
image = { version = "0.25", default-features = false, features = ["jpeg", "png", "gif", "bmp", "webp"] }
|
|
interprocess = "2.4"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|