1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
[package]
name = "evdev-rs"
version = "0.6.3"
authors = ["Nayan Deshmukh <nayan26deshmukh@gmail.com>"]
license = "MIT/Apache-2.0"
keywords = ["evdev"]
readme = "README.md"
repository = "https://github.com/ndesh26/evdev-rs"
homepage = "https://github.com/ndesh26/evdev-rs"
edition = "2018"
description = """
Bindings to libevdev for interacting with evdev devices. It moves the
common tasks when dealing with evdev devices into a library and provides
a library interface to the callers, thus avoiding erroneous ioctls, etc.
"""
[features]
default = []
# Use features from libevdev version 1.10 and greater (libevdev_property_disable)
libevdev-1-10 = ["evdev-sys/libevdev-1-10"]
[dependencies]
serde = { version = "1.0", default-features = false, features=["derive"], optional = true }
evdev-sys = { path = "evdev-sys", version = "0.2.6" }
libc = "0.2.174"
bitflags = "2.9.1"
log = "0.4.27"
[package.metadata.docs.rs]
features = ["serde"]
|