[package]
edition = "2024"
rust-version = "1.88"
name = "pixelactions"
version = "0.4.0"
authors = ["Nolin D Naidoo"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Execute desktop interactions from pixelcoords sessions: resolve a labeled region, act at the verified point, confirm it landed"
homepage = "https://pixelactions.dev"
documentation = "https://github.com/nolindnaidoo/pixelactions/blob/main/docs/CLI.md"
readme = "README.md"
keywords = [
"automation",
"coordinates",
"input",
"desktop",
"testing",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/nolindnaidoo/pixelactions"
[[bin]]
name = "pixelactions"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.enigo]
version = "0.6"
[dependencies.pixelactions-core]
version = "0.4.0"
[dependencies.pixelcoords-core]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[target.'cfg(target_os = "linux")'.dependencies.reis]
version = "0.7"
[target.'cfg(target_os = "linux")'.dependencies.xkbcommon]
version = "0.9"
features = ["wayland"]
[target.'cfg(target_os = "linux")'.dependencies.zbus]
version = "5"
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Threading",
"Win32_UI_HiDpi",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
unnecessary_wraps = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1