[package]
name = "easytab"
version = "0.2.0"
edition = "2024"
description = "A Rust crate built for vendor-agnostic interaction with pen & tablet devices."
license = "MIT"
repository = "https://github.com/DexterHill0/easytab-rs"
[dependencies]
thiserror = "2.0.18"
raw-window-handle = { version = "0.6", optional = true, features = ["std"] }
[features]
raw-window-handle = ["dep:raw-window-handle"]
[target.'cfg(windows)'.dependencies.windows]
version = "0.62.2"
features = [
"Win32_Foundation",
"Win32_System_Com",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Input_Pointer",
]
[dev-dependencies]
easytab = { path = ".", features = ["raw-window-handle"] }
winit = "0.30.13"