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.
62 lines
1.8 KiB
TOML
62 lines
1.8 KiB
TOML
[package]
|
|
name = "redbear_cookbook"
|
|
# IMPORTANT: keep in lock-step with the current Red Bear OS release branch.
|
|
# `local/scripts/sync-versions.sh` updates this field on every branch bump,
|
|
# so the cookbook binary always reports the correct OS version it builds.
|
|
# Branch 0.3.1 as of 2026-07-12.
|
|
version = "0.3.2"
|
|
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
|
|
edition = "2024"
|
|
default-run = "repo"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
name = "cookbook_redbear_redoxer"
|
|
path = "src/bin/cookbook_redoxer.rs"
|
|
|
|
[[bin]]
|
|
name = "repo"
|
|
path = "src/bin/repo.rs"
|
|
|
|
[[bin]]
|
|
name = "repo_builder"
|
|
path = "src/bin/repo_builder.rs"
|
|
|
|
[lib]
|
|
name = "cookbook"
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
#TODO: Actually make without tui feature works
|
|
default = ["tui"]
|
|
tui = ["ratatui", "ansi-to-tui", "strip-ansi-escapes"]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
blake3 = "1"
|
|
globset = "0.4"
|
|
libc = "0.2"
|
|
ignore = "0.4"
|
|
object = { version = "0.38", features = ["build_core"] }
|
|
pkgar = { git = "https://gitlab.redox-os.org/redox-os/pkgar.git" }
|
|
pkgar-core = { git = "https://gitlab.redox-os.org/redox-os/pkgar.git" }
|
|
pkgar-keys = { git = "https://gitlab.redox-os.org/redox-os/pkgar.git" }
|
|
redox-pkg = { git = "https://gitlab.redox-os.org/redox-os/pkgutils.git", default-features = false }
|
|
redox_installer = { path = "local/sources/installer", default-features = false }
|
|
redoxer = { git = "https://gitlab.redox-os.org/redox-os/redoxer.git", default-features = false }
|
|
regex = "1.11"
|
|
serde = { version = "=1.0.197", features = ["derive"] }
|
|
termion = "4"
|
|
toml = "0.8"
|
|
walkdir = "2.3.1"
|
|
ansi-to-tui = { version = "8", optional = true }
|
|
strip-ansi-escapes = { version = "0.2.1", optional = true }
|
|
|
|
[dependencies.ratatui]
|
|
version = "0.30"
|
|
default-features = false
|
|
features = ["termion"]
|
|
optional = true
|