deskctl/Cargo.toml
Harivansh Rathi 567115a6c2 Phase 5: window management via x11rb
- Add x11rb 0.13 dependency with randr feature
- RustConnection and root window in X11Backend
- Focus window via _NET_ACTIVE_WINDOW client message
- Close window via _NET_CLOSE_WINDOW client message
- Move/resize via configure_window
- Handler dispatchers for focus, close, move-window, resize-window
- list-windows command re-runs snapshot for fresh window tree
2026-03-24 21:36:56 -04:00

23 lines
686 B
TOML

[package]
name = "desktop-ctl"
version = "0.1.0"
edition = "2021"
description = "Desktop control CLI for AI agents - screenshot, click, type, window management on Linux X11"
license = "MIT OR Apache-2.0"
repository = "https://github.com/user/agent-computer"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
dirs = "6"
libc = "0.2"
uuid = { version = "1", features = ["v4"] }
xcap = "0.8"
image = { version = "0.25", features = ["png"] }
imageproc = "0.26"
ab_glyph = "0.2"
enigo = "0.6"
x11rb = { version = "0.13", features = ["randr"] }