7b8a1b2838
New release branch per the release-branch model (operator decision; local/AGENTS.md reserves branch creation to the operator). sync-versions.sh, driven by bump-release.sh, rewrites: - Cat 1 in-house crates -> version = 0.3.2 - Cat 2 upstream forks -> <upstream-tag>+rb0.3.2 Labels only; no fork source was rebased in this commit. bump-release.sh reports these forks as having newer upstream tags, to be taken next: relibc 0.2.5 -> 0.6.0 syscall 0.9.0 -> 0.9.1 libredox 0.1.18 -> 0.1.19 redoxfs and redox-scheme are already current. kernel, bootloader and installer are 'diverged' in the fork map and stay report-only (manual rebase); bootloader additionally has no merge-base with upstream.
20 lines
610 B
TOML
20 lines
610 B
TOML
[package]
|
|
name = "coretempd"
|
|
version = "0.3.2"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "coretempd"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
libredox = { path = "../../../../../local/sources/libredox", features = ["call", "std"] }
|
|
log = { version = "0.4", features = ["std"] }
|
|
redox-scheme = { path = "../../../../../local/sources/redox-scheme" }
|
|
syscall = { path = "../../../../../local/sources/syscall", package = "redox_syscall", features = ["std"] }
|
|
|
|
[patch.crates-io]
|
|
redox-scheme = { path = "../../../../../local/sources/redox-scheme" }
|
|
redox_syscall = { path = "../../../../../local/sources/syscall" }
|