- Device labels: lowercase, no whitespace, only a-z 0-9 - _ (enforced at config time) - Session IDs removed: device label is the sole identifier - Routes changed: /sessions/:id → /devices/:label - Removed commands: click, type, find-window, wait-for-window, label, old version, server-version - Renamed: status → version (compares relay/remote.py/client commits) - Unified screenshot: takes 'screen' or a window label as argument - Windows listed with human-readable labels (same format as device labels) - Single instance enforcement via PID lock file - Removed input.rs (click/type functionality) - All docs and code in English - Protocol: Hello.label is now required (String, not Option<String>) - Client auto-migrates invalid labels on startup
43 lines
1 KiB
TOML
43 lines
1 KiB
TOML
[package]
|
|
name = "helios-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "helios-client"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-tungstenite = { version = "0.21", features = ["connect", "native-tls"] }
|
|
native-tls = { version = "0.2", features = [] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
chrono = "0.4"
|
|
helios-common = { path = "../common" }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
dirs = "5"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
base64 = "0.22"
|
|
png = "0.17"
|
|
futures-util = "0.3"
|
|
colored = "2"
|
|
scopeguard = "1"
|
|
terminal_size = "0.3"
|
|
unicode-width = "0.1"
|
|
|
|
[build-dependencies]
|
|
winres = "0.1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.54", features = [
|
|
"Win32_Foundation",
|
|
"Win32_Graphics_Gdi",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_UI_Shell",
|
|
"Win32_System_Console",
|
|
] }
|