Files
RedBear-OS/local/recipes/system/diskd/source/Cargo.toml
T
vasilito 7902864a32 version(0.2.5): bump project version to 0.2.5
- Cookbook Cargo.toml: 0.1.0 → 0.2.5
- All 61 in-house crate Cargo.toml versions: 0.2.4 → 0.2.5
- os-release.in: fix URLs from github.com to gitea.redbearos.org
- sync-versions.sh --check passes with zero drift

The OS version is derived from the git branch name at build time.
Building on branch 0.2.5 produces os-release with VERSION_ID=0.2.5.
2026-07-02 15:36:28 +03:00

21 lines
561 B
TOML

[package]
name = "diskd"
version = "0.2.5"
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 = "0.11"
libredox = { version = "=0.1.16", features = ["call", "std"] }
syscall = { package = "redox_syscall", version = "0.7", features = ["std"] }
log = "0.4"
[profile.release]
opt-level = 3
lto = true