Files
RedBear-OS/local/recipes/drivers/virtio-inputd/source/Cargo.toml
T
vasilito d7273ce5cf fix: document and implement local fork version sync policy
Add comprehensive policy documentation in AGENTS.md covering:
- local/ fork always takes precedence over recipes/ paths
- build system must ensure local fork is at latest available version
- all Red Bear patches must be applied cleanly on top of latest version
- automatic version bump + patch reapplication via bump-fork.sh

Create local/scripts/bump-fork.sh that implements automatic version bumping:
- Detects current local version vs required version from Cargo.lock
- Fetches upstream source at required version
- Applies all Red Bear patches atomically
- Updates version field and replaces local fork contents

Fix driver-manager Cargo.toml lockfile collision:
- Remove redundant syscall dependency (transitive via pcid_interface)
- Update all driver recipes to use local/sources/syscall and libredox paths
- This eliminates the redox_syscall lockfile collision between
  local/sources/syscall and recipes/core/base/syscall (same dir, different paths)

relibc: fix unsafe call for Rust 2024 edition compatibility
2026-07-04 04:23:34 +03:00

24 lines
908 B
TOML

[package]
name = "virtio-inputd"
version = "0.2.5"
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 = { path = "../../../../../local/sources/libredox", features = ["call", "std"] }
redox_syscall = { path = "../../../../../local/sources/syscall", features = ["std"] }
redox-driver-sys = { path = "../../redox-driver-sys/source" }
syscall = { package = "redox_syscall", path = "../../../../../local/sources/syscall", features = ["std"] }
inputd = { path = "../../../../sources/base/drivers/inputd" }
common = { path = "../../../../sources/base/drivers/common" }
[patch.crates-io]
redox_syscall = { path = "../../../../../local/sources/syscall" }
libredox = { path = "../../../../../local/sources/libredox" }