deskctl/Cargo.toml
Harivansh Rathi e392ba1055 Rewrite X11 backend to drop xcap
Use x11rb directly for screenshot capture and window metadata so the Linux build no longer drags in Wayland build dependencies.

Co-authored-by: Codex <noreply@openai.com>
2026-03-25 12:28:23 -04:00

22 lines
598 B
TOML

[package]
name = "deskctl"
version = "0.1.0"
edition = "2021"
description = "X11 desktop control CLI for agents"
license = "MIT"
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"] }
image = { version = "0.25", features = ["png"] }
imageproc = "0.26"
ab_glyph = "0.2"
enigo = "0.6"
x11rb = { version = "0.13", features = ["randr"] }