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.
20 lines
694 B
TOML
20 lines
694 B
TOML
[package]
|
|
name = "firmware-loader"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
syscall = { path = "../../../../../recipes/core/base/syscall", package = "redox_syscall", features = ["std"] }
|
|
redox_scheme = { path = "../../../../../recipes/core/base/redox-scheme", package = "redox-scheme" }
|
|
libredox = { path = "../../../../../recipes/core/base/libredox" }
|
|
log = { version = "0.4", features = ["std"] }
|
|
sha2 = "0.10"
|
|
thiserror = "2"
|
|
toml = "0.8"
|
|
|
|
[patch.crates-io]
|
|
libredox = { path = "../../../../../recipes/core/base/libredox" }
|
|
redox-scheme = { path = "../../../../../recipes/core/base/redox-scheme" }
|
|
redox_syscall = { path = "../../../../../recipes/core/base/syscall" }
|