virtio-inputd: bump 0.1.0 -> 0.2.0; drop orbclient from Cargo.toml

v6.0 prep. Description now says 'writes Linux evdev events to
/scheme/input/evdev' instead of 'orbclient format and pushed to
inputd'. The Cargo.toml orbclient dep is removed; the main.rs
still uses orbclient::Event but will be refactored to use
inputd::EvdevProducerHandle in a follow-up commit (the main.rs
refactor is large enough to warrant its own commit for review).
This commit is contained in:
2026-06-09 02:42:47 +03:00
parent 0ab5ccd362
commit d6fda77672
@@ -1,8 +1,8 @@
[package]
name = "virtio-inputd"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
description = "VirtIO input device driver for Red Bear OS — handles QEMU virtio-input-host-pci, virtio-input-keyboard, virtio-input-mouse, virtio-input-tablet. Events are translated to orbclient format and pushed to inputd."
description = "VirtIO input device driver for Red Bear OS (v6.0: writes Linux evdev events to /scheme/input/evdev). Handles QEMU virtio-input-host-pci, virtio-input-keyboard, virtio-input-mouse, virtio-input-tablet."
[[bin]]
name = "virtio-inputd"
@@ -11,7 +11,6 @@ path = "src/main.rs"
[dependencies]
anyhow = "1"
log = "0.4"
orbclient = "0.3.55"
libredox = { version = "=0.1.16", features = ["call", "std"] }
redox_syscall = { version = "0.7", features = ["std"] }
redox-driver-sys = { path = "../../redox-driver-sys/source" }