c22147d673
Redox scheme names are flat identifiers; '/' is rejected by RedoxScheme::new() causing inputd to panic at boot: initnsmgr.rs:301: Invalid scheme name: input/evdev All consumers updated: EvdevProducerHandle (lib.rs), evdevd, virtio-inputd, intel-thc-hidd, ps2d, usbhidd, i2c-hidd. Plan doc updated (21 references). Base fork commit: 4c1fa35c
20 lines
674 B
TOML
20 lines
674 B
TOML
[package]
|
|
name = "virtio-inputd"
|
|
version = "0.2.3"
|
|
edition = "2024"
|
|
description = "virtio-input daemon v6.0 2026: reads virtio-input PCI events and writes Linux evdev events to /scheme/input-evdev"
|
|
|
|
[[bin]]
|
|
name = "virtio-inputd"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
log = "0.4"
|
|
libredox = { version = "=0.1.16", features = ["call", "std"] }
|
|
redox_syscall = { version = "0.7", features = ["std"] }
|
|
redox-driver-sys = { path = "../../redox-driver-sys/source" }
|
|
syscall = { package = "redox_syscall", version = "0.7", features = ["std"] }
|
|
inputd = { path = "../../../../sources/base/drivers/inputd" }
|
|
common = { path = "../../../../sources/base/drivers/common" }
|