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
|
[package]
name = "evdev-sys"
version = "0.2.6"
authors = ["Nayan Deshmukh <nayan26deshmukh@gmail.com"]
build = "build.rs"
license = "MIT/Apache-2.0"
keywords = ["evdev"]
links = "evdev"
repository = "https://github.com/ndesh26/evdev-rs"
edition = "2018"
description = """
Raw bindings to libevdev
High level Rust bindings are available in the `evdev` crate
"""
[features]
libevdev-1-10 = []
[dependencies]
libc = "0.2.67"
[build-dependencies]
pkg-config = "0.3.17"
cc = "1.0.50"
|