[package]
name = "libinput-rs"
version = "0.3.0"
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-upstream = { package = "evdev", version = "=0.13.2" }
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"