Files
RedBear-OS/local/recipes/drivers/linux-kpi/source/Cargo.toml
T
vasilito 74bdc1bc80 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.
2026-07-09 15:25:53 +03:00

22 lines
642 B
TOML

[package]
name = "linux-kpi"
version = "0.3.0"
edition = "2021"
description = "Linux Kernel API compatibility layer for Redox OS (LinuxKPI-style)"
license = "MIT"
[dependencies]
libredox = { path = "../../../../../recipes/core/base/libredox" }
redox_syscall = { path = "../../../../../recipes/core/base/syscall", features = ["std"] }
log = "0.4"
thiserror = "2"
lazy_static = "1.4"
redox-driver-sys = { path = "../../redox-driver-sys/source" }
[lib]
crate-type = ["rlib", "staticlib"]
[patch.crates-io]
redox_syscall = { path = "../../../../../recipes/core/base/syscall" }
libredox = { path = "../../../../../recipes/core/base/libredox" }