[package]
edition = "2024"
rust-version = "1.88"
name = "pixelactions-core"
version = "0.5.0"
authors = ["Nolin D Naidoo"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Platform-free core of pixelactions: coordinate-space conversion for macOS CGEvent, Windows SendInput, and Linux XTEST — physical pixels vs logical points, HiDPI and multi-monitor — plus the flow schema, label resolution, and run reports"
homepage = "https://pixelactions.dev"
readme = "README.md"
keywords = [
"computer-use",
"ui-automation",
"rpa",
"hidpi",
"multi-monitor",
]
categories = [
"development-tools",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/nolindnaidoo/pixelactions"
[lib]
name = "pixelactions_core"
path = "src/lib.rs"
[[test]]
name = "convert_properties"
path = "tests/convert_properties.rs"
[dependencies.pixelcoords-core]
version = "0.7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1"
[dev-dependencies.proptest]
version = "1"
[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