550551d8bc
Systemic fix: all local recipes (~150 references across 40+ Cargo.toml files) now resolve libredox, redox_syscall, and redox-scheme through recipes/core/base/ symlinks instead of local/sources/ paths. Eliminates lockfile collision between Cargo's resolution of the same package through different path strings (local/sources/ vs recipes/core/base/). This is required because the base recipe's workspace Cargo.toml resolves these deps through recipes/core/base/ (via symlink chain from the recipe copy location), and Cargo treats different path strings to the same directory as different packages.
24 lines
928 B
TOML
24 lines
928 B
TOML
[package]
|
|
name = "virtio-inputd"
|
|
version = "0.3.0"
|
|
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 = "../../../../../recipes/core/base/libredox", features = ["call", "std"] }
|
|
redox_syscall = { path = "../../../../../recipes/core/base/syscall", features = ["std"] }
|
|
redox-driver-sys = { path = "../../redox-driver-sys/source" }
|
|
syscall = { package = "redox_syscall", path = "../../../../../recipes/core/base/syscall", features = ["std"] }
|
|
inputd = { path = "../../../../sources/base/drivers/inputd" }
|
|
common = { path = "../../../../sources/base/drivers/common" }
|
|
|
|
[patch.crates-io]
|
|
redox_syscall = { path = "../../../../../recipes/core/base/syscall" }
|
|
libredox = { path = "../../../../../recipes/core/base/libredox" }
|