[package]
edition = "2024"
rust-version = "1.85"
name = "kbd-evdev"
version = "0.1.0"
authors = ["Josh Thomas <josh@joshthomas.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "evdev backend for kbd — Linux input device discovery, hotplug, grab, and event forwarding."
readme = "README.md"
keywords = [
"evdev",
"keyboard",
"input",
"linux",
]
categories = ["os::linux-apis"]
license-file = "LICENSE"
repository = "https://github.com/joshuadavidthomas/kbd"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
testing = []
[lib]
name = "kbd_evdev"
path = "src/lib.rs"
[[example]]
name = "evdev"
path = "examples/evdev.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[dependencies.evdev]
version = "0.13"
[dependencies.kbd]
version = "0.1.0"
[dependencies.libc]
version = "0.2"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.evdev]
version = "0.13"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"