[package]
edition = "2024"
name = "easytab"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust crate built for vendor-agnostic interaction with pen & tablet devices."
readme = "README.md"
license = "MIT"
repository = "https://github.com/DexterHill0/easytab-rs"
[features]
raw-window-handle = ["dep:raw-window-handle"]
[lib]
name = "easytab"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[dependencies.raw-window-handle]
version = "0.6"
features = ["std"]
optional = true
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.winit]
version = "0.30.13"
[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",
]