Skip to main content

max / balanced_breakfast

makeover-build 0.55.0 DEAD_VOCABULARY_HIGH_WATER goes 60 to 61. makeover-layout 0.36.0 added `Field::note` and makeover-webview 0.62.0 draws it, so `.form-note` lands dead here for the reason every line above it gives: BB describes no screens, so a class that arrives with one is dead by construction. No markup changed.
Author: Max Johnson <me@maxj.phd> · 2026-08-27 23:32 UTC
Signed with PGP, not checked
Commit: 1d499dc4ecc5d4f4fed8ee3c591e2ac3c877eea2
Parent: 280a9ef
3 files changed, +27 insertions, -22 deletions
M Cargo.lock +20 -20
@@ -3186,9 +3186,7 @@
3186 3186
3187 3187 [[package]]
3188 3188 name = "makeover-build"
3189 - version = "0.53.0"
3190 - source = "registry+https://github.com/rust-lang/crates.io-index"
3191 - checksum = "82a170c530883774fc44d41e8e785260ee1b44cc26d9bfaa4d77154176af794c"
3189 + version = "0.55.0"
3192 3190 dependencies = [
3193 3191 "makeover",
3194 3192 "makeover-geometry",
@@ -3204,9 +3202,7 @@
3204 3202
3205 3203 [[package]]
3206 3204 name = "makeover-layout"
3207 - version = "0.35.0"
3208 - source = "registry+https://github.com/rust-lang/crates.io-index"
3209 - checksum = "774bfd81b003f0d0059ff50daa8e625e6969175bc0132ddf7c2108bba40c47d5"
3205 + version = "0.36.0"
3210 3206
3211 3207 [[package]]
3212 3208 name = "makeover-timing"
@@ -3219,9 +3215,7 @@
3219 3215
3220 3216 [[package]]
3221 3217 name = "makeover-touch"
3222 - version = "0.24.0"
3223 - source = "registry+https://github.com/rust-lang/crates.io-index"
3224 - checksum = "75c49f37baa4360fc06e87834a39978b8adc70c256430864a8b234fcf2abfa45"
3218 + version = "0.26.0"
3225 3219 dependencies = [
3226 3220 "makeover-geometry",
3227 3221 "makeover-layout",
@@ -3229,9 +3223,7 @@
3229 3223
3230 3224 [[package]]
3231 3225 name = "makeover-webview"
3232 - version = "0.60.0"
3233 - source = "registry+https://github.com/rust-lang/crates.io-index"
3234 - checksum = "203b3a259e249ed32ffd9d48d75a6c12e4aa173095607cc2c852f2c1f3fe9c0e"
3226 + version = "0.62.0"
3235 3227 dependencies = [
3236 3228 "makeover-geometry",
3237 3229 "makeover-layout",
@@ -8088,27 +8080,27 @@
8088 8080
8089 8081 [[patch.unused]]
8090 8082 name = "quasi-axum"
8091 - version = "0.64.0"
8083 + version = "0.71.0"
8092 8084
8093 8085 [[patch.unused]]
8094 8086 name = "quasi-basics"
8095 - version = "0.64.0"
8087 + version = "0.71.0"
8096 8088
8097 8089 [[patch.unused]]
8098 8090 name = "quasi-http"
8099 - version = "0.64.0"
8091 + version = "0.71.0"
8100 8092
8101 8093 [[patch.unused]]
8102 8094 name = "quasi-immediate"
8103 - version = "0.64.0"
8095 + version = "0.71.0"
8104 8096
8105 8097 [[patch.unused]]
8106 8098 name = "quasi-notifs"
8107 - version = "0.64.0"
8099 + version = "0.71.0"
8108 8100
8109 8101 [[patch.unused]]
8110 8102 name = "quasi-router"
8111 - version = "0.64.0"
8103 + version = "0.71.0"
8112 8104
8113 8105 [[patch.unused]]
8114 8106 name = "quasi-store"
@@ -8116,11 +8108,19 @@
8116 8108
8117 8109 [[patch.unused]]
8118 8110 name = "quasi-tauri"
8119 - version = "0.64.0"
8111 + version = "0.71.0"
8120 8112
8121 8113 [[patch.unused]]
8122 8114 name = "quasi-webview"
8123 - version = "0.64.0"
8115 + version = "0.71.0"
8116 +
8117 + [[patch.unused]]
8118 + name = "makeover-immediate"
8119 + version = "0.37.0"
8120 +
8121 + [[patch.unused]]
8122 + name = "makeover-tui"
8123 + version = "0.36.0"
8124 8124
8125 8125 [[patch.unused]]
8126 8126 name = "kberg"
@@ -18,7 +18,7 @@
18 18 # Materialises the generated files: themes/, geometry.css, layout.css,
19 19 # typography.css. makeover and makeover-geometry reach the build script through
20 20 # here rather than as pins of their own.
21 - makeover-build = "0.54.0"
21 + makeover-build = "0.55.0"
22 22 # Cuts the two house faces into frontend/fonts/. A git dependency because
23 23 # quasi-type is `publish = false`, which is also why makeover-build cannot do
24 24 # this and only emits the CSS that fetches the result. The rev is the one
@@ -175,7 +175,12 @@
175 175 /// to 88 and the eleven new names visible here land dead for the reason every
176 176 /// line above gives: BB describes no screens, so a class that arrives with one
177 177 /// is dead here by construction. No markup changed.
178 - const DEAD_VOCABULARY_HIGH_WATER: usize = 60;
178 + /// Raised 60 to 61 on the makeover-build 0.55 bump. makeover-layout 0.36.0
179 + /// added `Field::note` and makeover-webview 0.62.0 draws it, so `.form-note`
180 + /// lands dead here for the reason every line above gives: BB describes no
181 + /// screens, so a class that arrives with one is dead here by construction. No
182 + /// markup changed.
183 + const DEAD_VOCABULARY_HIGH_WATER: usize = 61;
179 184
180 185 /// Every file that can carry a class name.
181 186 fn markup_files(frontend: &std::path::Path) -> Vec<std::path::PathBuf> {