Skip to main content

max / makeover-build

0.20.3: take makeover-webview 0.27.0, so an app's CSS and markup come off one crate This crate emits the stylesheet and a screen renderer emits the markup that stylesheet matches. quasi-webview moved to 0.27.0, so a generated app was resolving 0.26 through this build dependency and 0.27 through its renderer: two crates, one document, and nothing making them agree.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-12 00:57 UTC
Signed with PGP, not checked
Commit: a87d8fae03f47a889c98816238f6290c01ee5b45
Parent: 27a3c0d
1 file changed, +10 insertions, -3 deletions
M Cargo.toml +10 -3
@@ -1,6 +1,6 @@
1 1 [package]
2 2 name = "makeover-build"
3 - version = "0.20.2"
3 + version = "0.20.3"
4 4 edition = "2024"
5 5 description = "Build-script support for the make-family design system: materialise makeover's themes and makeover-webview's stylesheet into a Tauri app's frontend, once, instead of copying the same twenty lines into every consumer's build.rs."
6 6 license = "MIT"
@@ -15,12 +15,19 @@
15 15 # naming a token nothing defines, and a custom property whose value fails to
16 16 # substitute takes the whole declaration with it rather than degrading.
17 17 makeover = "2.5"
18 - # 0.25.0 and not 0.25: the same exact-patch discipline 0.13.1 was released for.
18 + # The exact patch, not the minor: the same discipline 0.13.1 was released for.
19 19 # An earlier patch in a minor can pin an older makeover-touch, which drags a
20 20 # second makeover-geometry into the graph alongside the one below and fails to
21 21 # compile on `Density` being nominally distinct. The exact patch is what keeps
22 22 # the geometry axis single.
23 - makeover-webview = "0.26.0"
23 + #
24 + # 0.27.0 tracks the renderer half rather than only this crate's needs. This
25 + # crate emits the stylesheet; a screen renderer emits the markup that stylesheet
26 + # matches, and a graph holding both at different versions is an app whose CSS
27 + # and HTML were generated by two crates that never agreed. quasi-webview takes
28 + # 0.27.0, so a generated app resolved 0.26 through this build dependency and
29 + # 0.27 through its renderer until this line moved.
30 + makeover-webview = "0.27.0"
24 31 makeover-geometry = "0.7"
25 32
26 33 [lints.rust]