- Remove unused const_format from g3-planner (never imported) - Remove unused thiserror from workspace and 5 crates (declared but never used) - Update termimad 0.31 -> 0.34 in studio (consistency with g3-cli) - Update indicatif 0.17 -> 0.18 in g3-cli - Update ratatui 0.29 -> 0.30 in g3-cli - Update walkdir 2.4 -> 2.5 in g3-core - Update image 0.24 -> 0.25 in g3-computer-control (macOS + Linux) - Update config 0.14 -> 0.15 in workspace Blocked: reqwest 0.11 -> 0.12/0.13 requires breaking API changes to bytes_stream() used in 4 providers - needs separate migration effort. All tests pass. No behavior changes. Agent: fowler
48 lines
1.0 KiB
TOML
48 lines
1.0 KiB
TOML
[package]
|
|
name = "g3-computer-control"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
# Only needed for building Swift bridge on macOS
|
|
|
|
[dependencies]
|
|
# Workspace dependencies
|
|
tokio = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
shellexpand = "3.1"
|
|
dirs = "5.0"
|
|
# Async trait support
|
|
async-trait = "0.1"
|
|
|
|
# WebDriver support
|
|
fantoccini = "0.21"
|
|
|
|
# macOS dependencies
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-graphics = "0.23"
|
|
core-foundation = "0.10"
|
|
cocoa = "0.25"
|
|
objc = "0.2"
|
|
accessibility = "0.2"
|
|
image = "0.25"
|
|
|
|
# Linux dependencies
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
x11 = { version = "2.21", features = ["xlib", "xtest"] }
|
|
image = "0.25"
|
|
|
|
# Windows dependencies
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows = { version = "0.52", features = [
|
|
"Win32_Foundation",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_Graphics_Gdi",
|
|
] }
|