Skip to main content

max / balanced_breakfast

Take the current makeover suite: makeover-build 0.14.1, makeover 2.5 The staleest pin in the tree, 0.9 to 0.14.1, so this is five minors of generator drift at once rather than a refresh. What it inherits is additive: a figure emitter, a region stand-in, a sortable table heading, field constraints, and the --elevation-overlay property. The one non-additive change in that span had already landed here. 0.17.0 ruled the depth classes to be surfaces rather than controls, and 0.9 pinned makeover-webview 0.17.1, so this app was already past it. Checked the classes the span adds against the markup as well: .figure, .placeholder and .table-heading have zero uses, and .row was already generated. Workspace tests green, frontend lint clean. Nothing paints with the elevation property yet; it is a :root property waiting for a menu or a toast to name it.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-10 15:22 UTC
Signed with PGP, not checked
Commit: df5e04cb4ba2f7136072854db38455caebf9bcb4
Parent: 476bf09
3 files changed, +139 insertions, -83 deletions
M Cargo.lock +137 -81
@@ -31,9 +31,9 @@
31 31
32 32 [[package]]
33 33 name = "aes"
34 - version = "0.9.1"
34 + version = "0.9.2"
35 35 source = "registry+https://github.com/rust-lang/crates.io-index"
36 - checksum = "f1fc76eaeac4c9164506c466d4ffdd8ec9d0c5bf57ee97177c4d8eceb3a0e138"
36 + checksum = "f8eb277bec05f56a0e0591f155a484cbd0f4f07ff2905051a48c72f004f7ed58"
37 37 dependencies = [
38 38 "cipher 0.5.2",
39 39 "cpubits",
@@ -47,7 +47,7 @@
47 47 checksum = "fdf011db2e21ce0d575593d749db5554b47fed37aff429e4dc50bc91ac93a028"
48 48 dependencies = [
49 49 "aead",
50 - "aes 0.9.1",
50 + "aes 0.9.2",
51 51 "cipher 0.5.2",
52 52 "ctr",
53 53 "ghash",
@@ -70,9 +70,9 @@
70 70
71 71 [[package]]
72 72 name = "aho-corasick"
73 - version = "1.1.4"
73 + version = "1.1.5"
74 74 source = "registry+https://github.com/rust-lang/crates.io-index"
75 - checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
75 + checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
76 76 dependencies = [
77 77 "memchr",
78 78 ]
@@ -91,18 +91,18 @@
91 91
92 92 [[package]]
93 93 name = "alloc-stdlib"
94 - version = "0.2.2"
94 + version = "0.2.4"
95 95 source = "registry+https://github.com/rust-lang/crates.io-index"
96 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
96 + checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
97 97 dependencies = [
98 98 "alloc-no-stdlib",
99 99 ]
100 100
101 101 [[package]]
102 102 name = "allsorts-azul"
103 - version = "0.17.1"
103 + version = "0.17.2"
104 104 source = "registry+https://github.com/rust-lang/crates.io-index"
105 - checksum = "c652f26321a22e93b603f5589b07f49a99c20d53d88de889a04b45079abf25ca"
105 + checksum = "ab097a7be305dd66b2b6917f5efb6b723129ce4b2cd11aa1a0afcc293c7dc08e"
106 106 dependencies = [
107 107 "bitflags 2.13.1",
108 108 "brotli-decompressor",
@@ -135,24 +135,24 @@
135 135
136 136 [[package]]
137 137 name = "android_system_properties"
138 - version = "0.1.5"
138 + version = "0.1.6"
139 139 source = "registry+https://github.com/rust-lang/crates.io-index"
140 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
140 + checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
141 141 dependencies = [
142 142 "libc",
143 143 ]
144 144
145 145 [[package]]
146 146 name = "anyhow"
147 - version = "1.0.101"
147 + version = "1.0.104"
148 148 source = "registry+https://github.com/rust-lang/crates.io-index"
149 - checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
149 + checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
150 150
151 151 [[package]]
152 152 name = "apple-native-keyring-store"
153 - version = "1.0.1"
153 + version = "1.0.2"
154 154 source = "registry+https://github.com/rust-lang/crates.io-index"
155 - checksum = "797f94b6a53d7d10b56dc18290e0d40a2158352f108bb4ff32350825081a9f29"
155 + checksum = "2b350bfd03649e07aa05c0a81b3e15934374e585c98204a57e20b9d49f49bb9a"
156 156 dependencies = [
157 157 "keyring-core",
158 158 "log",
@@ -289,7 +289,7 @@
289 289 dependencies = [
290 290 "proc-macro2",
291 291 "quote",
292 - "syn 2.0.114",
292 + "syn 2.0.119",
293 293 ]
294 294
295 295 [[package]]
@@ -318,13 +318,13 @@
318 318
319 319 [[package]]
320 320 name = "async-trait"
321 - version = "0.1.91"
321 + version = "0.1.92"
322 322 source = "registry+https://github.com/rust-lang/crates.io-index"
323 - checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
323 + checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
324 324 dependencies = [
325 325 "proc-macro2",
326 326 "quote",
327 - "syn 3.0.2",
327 + "syn 3.0.3",
328 328 ]
329 329
330 330 [[package]]
@@ -358,9 +358,9 @@
358 358
359 359 [[package]]
360 360 name = "autocfg"
361 - version = "1.5.0"
361 + version = "1.5.1"
362 362 source = "registry+https://github.com/rust-lang/crates.io-index"
363 - checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
363 + checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
364 364
365 365 [[package]]
366 366 name = "azul-core"
@@ -401,7 +401,7 @@
401 401 "serde",
402 402 "smallvec",
403 403 "taffy",
404 - "thiserror 2.0.18",
404 + "thiserror 2.0.20",
405 405 "tinyvec",
406 406 "unicode-bidi",
407 407 "unicode-normalization",
@@ -448,7 +448,7 @@
448 448 "tauri-plugin-updater",
449 449 "tauri-plugin-window-state",
450 450 "tokio",
451 - "toml 1.1.3+spec-1.1.0",
451 + "toml 1.1.4+spec-1.1.0",
452 452 "tracing",
453 453 "tracing-subscriber",
454 454 "ureq",
@@ -468,6 +468,12 @@
468 468 source = "registry+https://github.com/rust-lang/crates.io-index"
469 469 checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
470 470
471 + [[package]]
472 + name = "base64"
473 + version = "0.23.1"
474 + source = "registry+https://github.com/rust-lang/crates.io-index"
475 + checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
476 +
471 477 [[package]]
472 478 name = "base64ct"
473 479 version = "1.8.3"
@@ -495,7 +501,7 @@
495 501 "rhai",
496 502 "roxmltree",
497 503 "serde_json",
498 - "thiserror 2.0.18",
504 + "thiserror 2.0.20",
499 505 "tokio",
500 506 "tracing",
501 507 "ureq",
@@ -515,7 +521,7 @@
515 521 "serde_json",
516 522 "sha2 0.11.0",
517 523 "synckit-config",
518 - "thiserror 2.0.18",
524 + "thiserror 2.0.20",
519 525 "tracing",
520 526 "uuid",
521 527 ]
@@ -529,7 +535,7 @@
529 535 "chrono",
530 536 "regex",
531 537 "serde_json",
532 - "thiserror 2.0.18",
538 + "thiserror 2.0.20",
533 539 "tracing",
534 540 ]
535 541
@@ -549,7 +555,7 @@
549 555 "printpdf",
550 556 "pter",
551 557 "pulldown-cmark",
552 - "thiserror 2.0.18",
558 + "thiserror 2.0.20",
553 559 ]
554 560
555 561 [[package]]
@@ -561,6 +567,21 @@
561 567 "serde",
562 568 ]
563 569
570 + [[package]]
571 + name = "bit-set"
572 + version = "0.8.0"
573 + source = "registry+https://github.com/rust-lang/crates.io-index"
574 + checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
575 + dependencies = [
576 + "bit-vec",
577 + ]
578 +
579 + [[package]]
580 + name = "bit-vec"
581 + version = "0.8.0"
582 + source = "registry+https://github.com/rust-lang/crates.io-index"
583 + checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
584 +
564 585 [[package]]
565 586 name = "bitflags"
566 587 version = "1.3.2"
@@ -645,9 +666,9 @@
645 666
646 667 [[package]]
647 668 name = "brotli"
648 - version = "8.0.2"
669 + version = "8.0.4"
649 670 source = "registry+https://github.com/rust-lang/crates.io-index"
650 - checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
671 + checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
651 672 dependencies = [
652 673 "alloc-no-stdlib",
653 674 "alloc-stdlib",
@@ -656,25 +677,34 @@
656 677
657 678 [[package]]
658 679 name = "brotli-decompressor"
659 - version = "5.0.0"
680 + version = "5.0.3"
660 681 source = "registry+https://github.com/rust-lang/crates.io-index"
661 - checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
682 + checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
662 683 dependencies = [
663 684 "alloc-no-stdlib",
664 685 "alloc-stdlib",
665 686 ]
666 687
667 688 [[package]]
668 - name = "bumpalo"
669 - version = "3.19.1"
689 + name = "bs58"
690 + version = "0.5.1"
670 691 source = "registry+https://github.com/rust-lang/crates.io-index"
671 - checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
692 + checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
693 + dependencies = [
694 + "tinyvec",
695 + ]
696 +
697 + [[package]]
698 + name = "bumpalo"
699 + version = "3.20.3"
700 + source = "registry+https://github.com/rust-lang/crates.io-index"
701 + checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
672 702
673 703 [[package]]
674 704 name = "bytemuck"
675 - version = "1.25.0"
705 + version = "1.25.2"
676 706 source = "registry+https://github.com/rust-lang/crates.io-index"
677 - checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
707 + checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
678 708
679 709 [[package]]
680 710 name = "byteorder"
@@ -684,9 +714,9 @@
684 714
685 715 [[package]]
686 716 name = "bytes"
687 - version = "1.11.1"
717 + version = "1.12.1"
688 718 source = "registry+https://github.com/rust-lang/crates.io-index"
689 - checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
719 + checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
690 720 dependencies = [
691 721 "serde",
692 722 ]
@@ -718,9 +748,9 @@
718 748
719 749 [[package]]
720 750 name = "camino"
721 - version = "1.2.2"
751 + version = "1.2.5"
722 752 source = "registry+https://github.com/rust-lang/crates.io-index"
723 - checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
753 + checksum = "bb1307f12aa967b5a58416e87b3653360e0fd614a016b6e970db08fecbb1b80d"
724 754 dependencies = [
725 755 "serde_core",
726 756 ]
@@ -745,7 +775,7 @@
745 775 "semver",
746 776 "serde",
747 777 "serde_json",
748 - "thiserror 2.0.18",
778 + "thiserror 2.0.20",
749 779 ]
750 780
751 781 [[package]]
@@ -778,9 +808,9 @@
778 808
779 809 [[package]]
780 810 name = "cc"
781 - version = "1.2.55"
811 + version = "1.4.2"
782 812 source = "registry+https://github.com/rust-lang/crates.io-index"
783 - checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
813 + checksum = "5d262e149917187838d5b42777c8253bcb64500067342904e7d429499a6f277e"
784 814 dependencies = [
785 815 "find-msvc-tools",
786 816 "shlex",
@@ -845,9 +875,9 @@
845 875
846 876 [[package]]
847 877 name = "chrono"
848 - version = "0.4.43"
878 + version = "0.4.45"
849 879 source = "registry+https://github.com/rust-lang/crates.io-index"
850 - checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
880 + checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
851 881 dependencies = [
852 882 "iana-time-zone",
853 883 "js-sys",
@@ -937,9 +967,9 @@
937 967
938 968 [[package]]
939 969 name = "cookie"
940 - version = "0.18.1"
970 + version = "0.18.2"
941 971 source = "registry+https://github.com/rust-lang/crates.io-index"
942 - checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
972 + checksum = "1a373e3602691c3cdea496d2f0ee5935151e6168fe87739483c463db1b2f2f87"
943 973 dependencies = [
944 974 "time",
945 975 "version_check",
@@ -973,9 +1003,9 @@
973 1003
974 1004 [[package]]
975 1005 name = "core-graphics"
976 - version = "0.24.0"
1006 + version = "0.25.0"
977 1007 source = "registry+https://github.com/rust-lang/crates.io-index"
978 - checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1"
1008 + checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97"
979 1009 dependencies = [
980 1010 "bitflags 2.13.1",
981 1011 "core-foundation 0.10.1",
@@ -1030,18 +1060,18 @@
1030 1060
1031 1061 [[package]]
1032 1062 name = "crossbeam-channel"
1033 - version = "0.5.15"
1063 + version = "0.5.16"
1034 1064 source = "registry+https://github.com/rust-lang/crates.io-index"
1035 - checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
1065 + checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
1036 1066 dependencies = [
1037 1067 "crossbeam-utils",
1038 1068 ]
1039 1069
1040 1070 [[package]]
1041 1071 name = "crossbeam-utils"
1042 - version = "0.8.21"
1072 + version = "0.8.22"
1043 1073 source = "registry+https://github.com/rust-lang/crates.io-index"
1044 - checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
1074 + checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
1045 1075
1046 1076 [[package]]
1047 1077 name = "crunchy"
@@ -1089,19 +1119,15 @@
1089 1119
1090 1120 [[package]]
1091 1121 name = "cssparser"
1092 - version = "0.29.6"
1122 + version = "0.36.0"
1093 1123 source = "registry+https://github.com/rust-lang/crates.io-index"
1094 - checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa"
1124 + checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2"
1095 1125 dependencies = [
1096 1126 "cssparser-macros 0.6.1",
1097 1127 "dtoa-short",
1098 - "itoa 1.0.17",
1099 - "matches",
1100 - "phf 0.10.1",
1101 - "proc-macro2",
1102 - "quote",
1128 + "itoa 1.0.18",
1129 + "phf 0.13.1",
1103 1130 "smallvec",
1104 - "syn 1.0.109",
1105 1131 ]
1106 1132
1107 1133 [[package]]
@@ -1112,7 +1138,7 @@
1112 1138 dependencies = [
1113 1139 "cssparser-macros 0.7.0",
1114 1140 "dtoa-short",
1115 - "itoa 1.0.17",
1141 + "itoa 1.0.18",
1116 1142 "phf 0.13.1",
1117 1143 "smallvec",
1118 1144 ]
@@ -1124,7 +1150,7 @@
1124 1150 checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
1125 1151 dependencies = [
1126 1152 "quote",
1127 - "syn 2.0.114",
1153 + "syn 2.0.119",
1128 1154 ]
1129 1155
1130 1156 [[package]]
@@ -1134,19 +1160,25 @@
1134 1160 checksum = "10a2a99df6e410a8ff4245aa2006499ea662245f967cc7c0a38c83ef8eb44dbf"
1135 1161 dependencies = [
1136 1162 "quote",
1137 - "syn 2.0.114",
1163 + "syn 2.0.119",
1138 1164 ]
1139 1165
1140 1166 [[package]]
1141 1167 name = "ctor"
1142 - version = "0.2.9"
1168 + version = "0.8.0"
1143 1169 source = "registry+https://github.com/rust-lang/crates.io-index"
1144 - checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
1170 + checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
1145 1171 dependencies = [
1146 - "quote",
1147 - "syn 2.0.114",
1172 + "ctor-proc-macro",
1173 + "dtor",
1148 1174 ]
1149 1175
1176 + [[package]]
1177 + name = "ctor-proc-macro"
1178 + version = "0.0.7"
1179 + source = "registry+https://github.com/rust-lang/crates.io-index"
1180 + checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
1181 +
1150 1182 [[package]]
1151 1183 name = "ctr"
1152 1184 version = "0.10.1"
@@ -1188,14 +1220,14 @@
1188 1220 dependencies = [
1189 1221 "proc-macro2",
1190 1222 "quote",
1191 - "syn 2.0.114",
1223 + "syn 2.0.119",
1192 1224 ]
1193 1225
1194 1226 [[package]]
1195 1227 name = "darling"
1196 - version = "0.21.3"
1228 + version = "0.23.0"
1197 1229 source = "registry+https://github.com/rust-lang/crates.io-index"
1198 - checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
1230 + checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
1199 1231 dependencies = [
1200 1232 "darling_core",
1201 1233 "darling_macro",
@@ -1203,27 +1235,37 @@
1203 1235
1204 1236 [[package]]
1205 1237 name = "darling_core"
1206 - version = "0.21.3"
1238 + version = "0.23.0"
1207 1239 source = "registry+https://github.com/rust-lang/crates.io-index"
1208 - checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
1240 + checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
1209 1241 dependencies = [
1210 - "fnv",
1211 1242 "ident_case",
1212 1243 "proc-macro2",
1213 1244 "quote",
1214 1245 "strsim",
1215 - "syn 2.0.114",
1246 + "syn 2.0.119",
1216 1247 ]
1217 1248
1218 1249 [[package]]
1219 1250 name = "darling_macro"
1220 - version = "0.21.3"
1251 + version = "0.23.0"
1221 1252 source = "registry+https://github.com/rust-lang/crates.io-index"
1222 - checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
1253 + checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
1223 1254 dependencies = [
1224 1255 "darling_core",
1225 1256 "quote",
1226 - "syn 2.0.114",
1257 + "syn 2.0.119",
1258 + ]
1259 +
1260 + [[package]]
1261 + name = "dbus"
1262 + version = "0.9.12"
1263 + source = "registry+https://github.com/rust-lang/crates.io-index"
1264 + checksum = "3ab69f03cc8c4340c9c8e315114e1658e6775a9b16a04357973aa21cec22b32e"
1265 + dependencies = [
1266 + "libc",
1267 + "libdbus-sys",
1268 + "windows-sys 0.61.2",
1227 1269 ]
1228 1270
1229 1271 [[package]]
@@ -1245,12 +1287,42 @@
1245 1287 checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
1246 1288
1247 1289 [[package]]
1248 - name = "deranged"
1249 - version = "0.5.6"
1290 + name = "defmt"
1291 + version = "1.1.1"
1250 1292 source = "registry+https://github.com/rust-lang/crates.io-index"
1251 - checksum = "cc3dc5ad92c2e2d1c193bbbbdf2ea477cb81331de4f3103f267ca18368b988c4"
1293 + checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
1294 + dependencies = [
1295 + "bitflags 1.3.2",
1296 + "defmt-macros",
1297 + ]
1298 +
1299 + [[package]]
1300 + name = "defmt-macros"
1301 + version = "1.1.1"
1302 + source = "registry+https://github.com/rust-lang/crates.io-index"
1303 + checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
1304 + dependencies = [
1305 + "defmt-parser",
1306 + "proc-macro2",
1307 + "quote",
Lines truncated
M Cargo.toml +1 -1
@@ -59,7 +59,7 @@
59 59 # Utilities
60 60 chrono = { version = "0.4.43", features = ["serde"] }
61 61 uuid = { version = "1.20.0", features = ["v4", "serde"] }
62 - makeover = "2.4"
62 + makeover = "2.5"
63 63 # The invariant half of the design system: relational spacing. makeover
64 64 # resolves colour, which a theme may override; this carries what no theme may.
65 65 toml = "1.1"
@@ -18,7 +18,7 @@
18 18 # Materialises all three generated files: themes/, geometry.css, layout.css.
19 19 # The build script needs nothing else; makeover and makeover-geometry reach it
20 20 # through here.
21 - makeover-build = "0.9"
21 + makeover-build = "0.14.1"
22 22
23 23 [dependencies]
24 24 bb-interface.workspace = true