⚠️ BETA — cua-driver-rs
cua-driver-rsis the cross-platform Rust port of the original Swift
cua-driver,
introducing Windows and Linux support to the cua-driver tool surface.
- Windows and Linux: feature-complete, recommended for testing /
integration work.- macOS: parity with the Swift cua-driver is in progress; for production
macOS automation prefer the Swift binary
(cua-driver-v*releases, installed via the Swiftinstall.sh).The Rust port and the Swift driver publish to the same GitHub repo under
distinct tag prefixes (cua-driver-rs-v*vscua-driver-v*), so their
installers do not collide.
What's Changed
- Bump cua-driver-rs to v0.2.8 (5d9c377) by @github-actions[bot]
- feat(cua-driver-rs/windows): cua-driver-uia worker for UWP automation (uiAccess prototype) (#1604) (1b5b603) by @francesco Bonacci
- fix(cua-driver-rs/windows): route screenshot through screen-region BitBlt for XAML/UWP targets (#1599) (4347cff) by @francesco Bonacci
- chore: remove internal scratchpad / handoff docs from repo root + libs (#1603) (f83c43c) by @francesco Bonacci
- feat(cua-driver-rs/windows): type_text → UIA ValuePattern routing for XAML targets + debug_window_info tool (#1597) (d4f219f) by @francesco Bonacci
- feat(cua-driver-rs): add kill_app tool for force-terminate by pid (closes CUA-541) (#1596) (5c8947f) by @francesco Bonacci
SHA256 Checksums
1b04db1bbd46841a28c8acb0d1c83bab812e0f5155871c826ac27371095639be cua-driver-rs-0.2.8-darwin-x86_64.tar.gz
1bb410a8de5717db7ce52713637d48672feefd61de0fa9f625cc128509622e4b cua-driver-rs-0.2.8-darwin-arm64.tar.gz
41cdee0b6f9817856ac6eaf4d3466d1b9512dd9012297a0b5bf0398f81f81e4b cua-driver-rs-v0.2.8-skills.tar.gz
5d3ed4b283d4d2862081ebebd01b840779eb91475ab5c239cf7119f734068dff cua-driver-rs-0.2.8-windows-x86_64-binary.zip
5e8bea7645ae7941e4ba9811bf65939a423292a96f1f1e812109ec4e6be011ed cua-driver-rs-0.2.8-windows-x86_64.zip
9914fd38b202d14ad36651c05c88da6f3f7708648740615020c392e418f22467 cua-driver-rs-0.2.8-windows-arm64.zip
9e36924aba0dd509467e443c7474cc8c75f1c5a76db633adad71d8b8ff404a23 cua-driver-rs-0.2.8-linux-x86_64.tar.gz
d2c31ba956dd1aa43cf8e39a7e972c838228510b3a9d8a104896583f9a2c013c cua-driver-rs-0.2.8-windows-arm64-binary.zip
df322061f705bd9acad01bcbd25694c16be08e09db7969e291b4a9f4896950b0 cua-driver-rs-0.2.8-darwin-universal.tar.gz
f625e2c8b93fe3f4d1ad7c409fd5297470299a76d412a92e21507fcd08eb07a8 cua-driver-rs-0.2.8-linux-x86_64-binary.tar.gz
fd55eaadf9b3ee7a31d51dcb98fcf15a8e22dfe25afe19f3aad4e00a5a641d2a cua-driver-rs-0.2.8-darwin-universal-binary.tar.gz
Install (Linux / macOS)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/cua-driver/scripts/install.sh)"On macOS the installer defaults to the Swift driver; pass
--experimental-rust to get the cua-driver-rs Rust port.
On Linux it auto-detects the non-macOS host and installs
the Rust port directly.
Install (Windows)
irm https://raw.githubusercontent.com/trycua/cua/main/libs/cua-driver/scripts/install.ps1 | iexNote: both canonical installer URLs now live under
libs/cua-driver/scripts/. Old URLs at
libs/cua-driver-rs/scripts/install.{sh,ps1}still work via a
deprecation shim that fetches the canonical script.
The installer auto-detects host architecture (x86_64 / arm64) and uses
directory junctions for the install layout, so it runs without admin
and without Developer Mode.
Artifacts
macOS (universal — arm64 + x86_64 in one binary, like the Swift cua-driver)
cua-driver-rs-0.2.8-darwin-universal.tar.gz— directory tarball with LICENSE +CuaDriver.appbundle (install.sh expects this layout)cua-driver-rs-0.2.8-darwin-arm64.tar.gz— same payload, named for arm64 callerscua-driver-rs-0.2.8-darwin-x86_64.tar.gz— same payload, named for x86_64 callerscua-driver-rs-0.2.8-darwin-universal-binary.tar.gz— bare universal binary (single file at archive root; no .app — bypasses the TCC auto-relaunch path)
Linux
cua-driver-rs-0.2.8-linux-x86_64.tar.gz— directory tarballcua-driver-rs-0.2.8-linux-x86_64-binary.tar.gz— bare binary
Windows
cua-driver-rs-0.2.8-windows-x86_64.zip— directory zipcua-driver-rs-0.2.8-windows-x86_64-binary.zip— barecua-driver.execua-driver-rs-0.2.8-windows-arm64.zip— directory zip (Windows on ARM)cua-driver-rs-0.2.8-windows-arm64-binary.zip— barecua-driver.exe(Windows on ARM)
Installer scripts
install.sh— Linux / macOS one-liner installerinstall.ps1— Windows one-liner installeruninstall.sh— Linux / macOS one-liner uninstaller (mirrors the install flag set: Swift by default;--experimental-rustfor the Rust port; non-macOS auto-detects)uninstall.ps1— Windows one-liner uninstaller