From d6fda77672acc7027c0cc68515d8c228626a8ae2 Mon Sep 17 00:00:00 2001 From: Admin Pupkin Date: Tue, 9 Jun 2026 02:42:47 +0300 Subject: [PATCH] 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). --- local/recipes/drivers/virtio-inputd/source/Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/local/recipes/drivers/virtio-inputd/source/Cargo.toml b/local/recipes/drivers/virtio-inputd/source/Cargo.toml index 90957f8253..3716e4aec1 100644 --- a/local/recipes/drivers/virtio-inputd/source/Cargo.toml +++ b/local/recipes/drivers/virtio-inputd/source/Cargo.toml @@ -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" }