Skip to main content

max / makeover-build

0.13.1: take makeover-webview 0.21.1 and makeover-geometry 0.7
Author: Max Johnson <me@maxj.phd> · 2026-08-10 02:10 UTC
Signed with PGP, not checked
Commit: 699e505b7c0196dd94cebd65132de11d2c470c8f
Parent: c0f6819
1 file changed, +6 insertions, -3 deletions
M Cargo.toml +6 -3
@@ -1,6 +1,6 @@
1 1 [package]
2 2 name = "makeover-build"
3 - version = "0.13.0"
3 + version = "0.13.1"
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"
@@ -8,8 +8,11 @@
8 8
9 9 [dependencies]
10 10 makeover = "2.4"
11 - makeover-webview = "0.21"
12 - makeover-geometry = "0.6"
11 + # 0.21.1 and not 0.21: an earlier 0.21 patch still pins makeover-touch 0.6, which
12 + # drags a second makeover-geometry into the graph alongside the 0.7 below and
13 + # fails to compile. The exact patch is what keeps the geometry axis single.
14 + makeover-webview = "0.21.1"
15 + makeover-geometry = "0.7"
13 16
14 17 [lints.rust]
15 18 unused = "warn"