[package]
edition = "2021"
rust-version = "1.75"
name = "libinput-rs"
version = "0.3.5"
authors = ["Kenny Glowner <SisyphusAeolides@pm.me>"]
build = "build.rs"
exclude = [
".cargo",
".github",
"vendor",
"rpmbuild",
"rpmbuild2",
"proofs/fortran/build",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "100% drop-in Rust replacement for the libinput 1.31.3 C ABI and tools"
homepage = "https://github.com/SisyphusAeolides/libinput-rs"
readme = "README.md"
keywords = [
"libinput",
"evdev",
"touchpad",
"linux",
"input",
]
categories = [
"hardware-support",
"os::linux-apis",
]
license = "MIT"
repository = "https://github.com/SisyphusAeolides/libinput-rs"
[features]
default = []
libwacom = []
[lib]
name = "input"
crate-type = [
"rlib",
"staticlib",
]
path = "src/lib.rs"
[[bin]]
name = "libinput"
path = "src/bin/libinput.rs"
[[bin]]
name = "libinput-device-group"
path = "src/bin/libinput-device-group.rs"
[[bin]]
name = "libinput-fuzz-extract"
path = "src/bin/libinput-fuzz-extract.rs"
[[bin]]
name = "libinput-fuzz-to-zero"
path = "src/bin/libinput-fuzz-to-zero.rs"
[[bin]]
name = "libinput-rs-chwd"
path = "src/bin/libinput-rs-chwd.rs"
[dependencies.evdev-upstream]
version = "=0.13.2"
package = "evdev"
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.29"
features = [
"ioctl",
"fs",
"inotify",
]