[package]
edition = "2024"
rust-version = "1.88"
name = "pixelcoords-core"
version = "0.4.0"
authors = ["Nolin D Naidoo"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Platform-free core of pixelcoords: screen geometry, HiDPI and multi-monitor coordinate spaces, the session.json schema, template relocation, point verdicts, click-point resolution, region diffing, and click-code emitters. Cross-platform (macOS, Windows, Linux), no unsafe"
homepage = "https://pixelcoords.dev"
readme = "README.md"
keywords = [
"geometry",
"screenshot",
"automation",
"testing",
"agent",
]
categories = [
"development-tools::testing",
"development-tools",
"computer-vision",
"graphics",
"multimedia::images",
]
license = "MIT"
repository = "https://github.com/nolindnaidoo/pixelcoords"
[lib]
name = "pixelcoords_core"
path = "src/lib.rs"
[[test]]
name = "geometry_properties"
path = "tests/geometry_properties.rs"
[[test]]
name = "locate_properties"
path = "tests/locate_properties.rs"
[dependencies.fontdue]
version = "0.9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.toml]
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"
struct_excessive_bools = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1