A Rust wrapper for libevdev
```toml
[dependencies] evdev-rs = "0.6.0" ```
to enable serialization support, enable the feature "serde" ```toml
[dependencies] evdev-rs = { version = "0.6.0", features = ["serde"] } ```
The evdev protocol is simple, but quirky, with a couple of behaviors that are non-obvious. libevdev transparently handles some of those quirks.
The evdev crate is an implementation of libevdev in Rust which provides most of the same features.
evdev-rs
crate closely follows libevdev and hence enjoys all the complex handling
that libevdev does. Some of the things that libevdev handles transparently, which may or
may not be in evdev
crate:
src/enums.rs
can be generated by running ./tools/make-enums.sh
.