libinput-rs 0.2.2

Fail-open Rust touchpad companion and drop-in libinput ABI replacement
Documentation
[workspace]
members = ["compat/evdev"]
resolver = "2"

[package]
name = "libinput-rs"
version = "0.2.2"
authors = ["Kenny Glowner <SisyphusAeolides@pm.me>"]
edition = "2021"
rust-version = "1.75"
description = "Fail-open Rust touchpad companion and drop-in libinput ABI replacement"
license = "MIT"
repository = "https://github.com/SisyphusAeolides/libinput-rs"
homepage = "https://github.com/SisyphusAeolides/libinput-rs"
readme = "README.md"
keywords = ["libinput", "evdev", "touchpad", "linux", "input"]
categories = ["hardware-support", "os::linux-apis"]
exclude = [
    ".cargo",
    ".github",
    "vendor",
    "rpmbuild",
    "rpmbuild2",
    "proofs/fortran/build",
]

[[bin]]
name = "libinput-rs"
path = "src/main.rs"

[lib]
name = "input"
crate-type = ["rlib", "staticlib"]
path = "src/lib.rs"

[features]
default = []
libwacom = []

[dependencies]
evdev = { package = "libinput-rs-evdev", version = "0.1.0", path = "compat/evdev" }
mio = { version = "1", features = ["os-poll", "os-ext", "net"] }
nix = { version = "0.29", features = ["ioctl", "fs", "inotify"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4"
env_logger = "0.11"
libc = "0.2"