Files
RedBear-OS/local/recipes/system/diskd/source/Cargo.toml
T
vasilito 550551d8bc fix: migrate all local recipe Cargo.toml deps from local/sources/ to recipes/core/base/ symlinks
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.
2026-07-09 15:31:01 +03:00

25 lines
841 B
TOML

[package]
name = "diskd"
version = "0.3.0"
edition = "2024"
description = "Red Bear OS disk aggregator scheme daemon — exposes a single, listable namespace over all underlying disk.* schemes (disk.live, disk.sata*, disk.virtio*, disk.nvme*, disk.usb*, disk.ide*)"
license = "MIT"
[[bin]]
name = "diskd"
path = "src/main.rs"
[dependencies]
redox-scheme = { path = "../../../../../recipes/core/base/redox-scheme" }
libredox = { path = "../../../../../recipes/core/base/libredox", features = ["call", "std"] }
syscall = { path = "../../../../../recipes/core/base/syscall", package = "redox_syscall", features = ["std"] }
log = "0.4"
[profile.release]
opt-level = 3
lto = true
[patch.crates-io]
redox-scheme = { path = "../../../../../recipes/core/base/redox-scheme" }
redox_syscall = { path = "../../../../../recipes/core/base/syscall" }