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