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.
21 lines
592 B
TOML
21 lines
592 B
TOML
[package]
|
|
name = "evdevd"
|
|
version = "0.3.2"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
redox-scheme = { path = "../../../../../local/sources/redox-scheme" }
|
|
syscall = { path = "../../../../../local/sources/syscall", package = "redox_syscall" }
|
|
log = { version = "0.4", features = ["std"] }
|
|
thiserror = "2"
|
|
orbclient = { version = "0.3", default-features = false }
|
|
|
|
[target.'cfg(target_os = "redox")'.dependencies]
|
|
redox_event = "0.4"
|
|
|
|
[workspace]
|
|
|
|
[patch.crates-io]
|
|
redox-scheme = { path = "../../../../../local/sources/redox-scheme" }
|
|
redox_syscall = { path = "../../../../../local/sources/syscall" }
|