| 1 |
# How Bento releases Balanced Breakfast. Lives here rather than in the daemon's |
| 2 |
# config so it is versioned with the code it describes: a change to targets or |
| 3 |
# features arrives in the same commit as the change that needed it. |
| 4 |
# |
| 5 |
# The daemon's own bento.toml holds the build hosts and points at this repo. |
| 6 |
|
| 7 |
# The release version is read from the Tauri config, the same file the built |
| 8 |
# binary and OTA manifest report. Explicit so it never falls back to the root |
| 9 |
# Cargo.toml, whose [workspace.package] version tracks the library crates. |
| 10 |
version_path = "src-tauri/tauri.conf.json" |
| 11 |
|
| 12 |
# LAN push to a Ratta Supernote. Off in a default build (most readers do not |
| 13 |
# own one, and it pulls in an HTTP client and an mDNS responder); on in every |
| 14 |
# release. Recipes read this via feature_flags(). |
| 15 |
features = ["supernote"] |
| 16 |
|
| 17 |
# macOS/iOS omitted until BB gains Developer ID signing + notarization infra; |
| 18 |
# only linux + windows recipes exist today. |
| 19 |
targets = ["linux/x86_64", "linux/aarch64", "windows/x86_64"] |
| 20 |
|