mirror of
https://github.com/joleuger/vuinputd.git
synced 2026-07-17 16:36:03 +00:00
17 lines
No EOL
367 B
TOML
17 lines
No EOL
367 B
TOML
[package]
|
|
name = "vuinputd-tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "keyboard-in-container"
|
|
|
|
[dependencies]
|
|
uinput-ioctls = { path = "../uinput-ioctls" }
|
|
nix = { version = "0.30", features = ["ioctl"] } # ioctl & libc bindings
|
|
libc = "0.2" # raw system calls
|
|
libudev = "0.3" # enumerate-udev
|
|
|
|
[features]
|
|
requires-root = []
|
|
requires-uinput = [] |