fix: align redox-driver-sys + linux-kpi path deps to recipes/core/base/ symlinks

All local fork deps (libredox, redox_syscall, redox-scheme) now consistently resolve
through recipes/core/base/ symlinks, matching daemon workspace resolution.
Eliminates lockfile collision between local/sources/ and recipes/core/base/ paths.
This commit is contained in:
2026-07-09 15:25:53 +03:00
parent 178bccca4e
commit 74bdc1bc80
2 changed files with 8 additions and 8 deletions
@@ -6,8 +6,8 @@ description = "Linux Kernel API compatibility layer for Redox OS (LinuxKPI-style
license = "MIT"
[dependencies]
libredox = { path = "../../../../../local/sources/libredox" }
redox_syscall = { path = "../../../../../local/sources/syscall", features = ["std"] }
libredox = { path = "../../../../../recipes/core/base/libredox" }
redox_syscall = { path = "../../../../../recipes/core/base/syscall", features = ["std"] }
log = "0.4"
thiserror = "2"
lazy_static = "1.4"
@@ -17,5 +17,5 @@ redox-driver-sys = { path = "../../redox-driver-sys/source" }
crate-type = ["rlib", "staticlib"]
[patch.crates-io]
redox_syscall = { path = "../../../../../local/sources/syscall" }
libredox = { path = "../../../../../local/sources/libredox" }
redox_syscall = { path = "../../../../../recipes/core/base/syscall" }
libredox = { path = "../../../../../recipes/core/base/libredox" }
@@ -5,8 +5,8 @@ edition = "2021"
description = "Safe Rust wrappers for Redox OS scheme-based hardware access"
[dependencies]
libredox = { path = "../../../../../local/sources/libredox" }
redox_syscall = { path = "../../../../../local/sources/syscall", features = ["std"] }
libredox = { path = "../../../../../recipes/core/base/libredox" }
redox_syscall = { path = "../../../../../recipes/core/base/syscall", features = ["std"] }
log = "0.4"
thiserror = "2"
bitflags = "2"
@@ -30,5 +30,5 @@ harness = false
required-features = ["redox"]
[patch.crates-io]
redox_syscall = { path = "../../../../../local/sources/syscall" }
libredox = { path = "../../../../../local/sources/libredox" }
redox_syscall = { path = "../../../../../recipes/core/base/syscall" }
libredox = { path = "../../../../../recipes/core/base/libredox" }