Skip to main content

max / goingson

Take the makeover-layout 0.19.0 cascade
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-13 13:56 UTC
Signed with PGP, not checked
Commit: 1286790395a518b7e6b57a4aca8a4aef4e4eb066
Parent: 5a2d524
3 files changed, +18 insertions, -24 deletions
M Cargo.lock +13 -19
@@ -3387,9 +3387,7 @@
3387 3387
3388 3388 [[package]]
3389 3389 name = "makeover"
3390 - version = "2.5.0"
3391 - source = "registry+https://github.com/rust-lang/crates.io-index"
3392 - checksum = "3ba9cbc9da41bffe0514e6d6744cecf8097eb18676edcaf62a7dd08cea42e4aa"
3390 + version = "2.5.1"
3393 3391 dependencies = [
3394 3392 "include_dir",
3395 3393 "serde",
@@ -3399,8 +3397,6 @@
3399 3397 [[package]]
3400 3398 name = "makeover-build"
3401 3399 version = "0.27.0"
3402 - source = "registry+https://github.com/rust-lang/crates.io-index"
3403 - checksum = "bf67f09cbaa537711532bc3bcf273e32bfd73a78dba2cd9d3e3f866c33ab04fb"
3404 3400 dependencies = [
3405 3401 "makeover",
3406 3402 "makeover-geometry",
@@ -3410,20 +3406,14 @@
3410 3406 [[package]]
3411 3407 name = "makeover-geometry"
3412 3408 version = "0.7.0"
3413 - source = "registry+https://github.com/rust-lang/crates.io-index"
3414 - checksum = "91a82b16c4f5b66dd7e87ed92fff7d22185e4d88e5355de6166dd64450cf6a16"
3415 3409
3416 3410 [[package]]
3417 3411 name = "makeover-layout"
3418 - version = "0.18.0"
3419 - source = "registry+https://github.com/rust-lang/crates.io-index"
3420 - checksum = "48e5725b8dc2d30d5e46b324dd97757e14e61345607c9f55534a34768a6b54dd"
3412 + version = "0.19.0"
3421 3413
3422 3414 [[package]]
3423 3415 name = "makeover-touch"
3424 - version = "0.11.0"
3425 - source = "registry+https://github.com/rust-lang/crates.io-index"
3426 - checksum = "aa8a698cf7ba31dc0a2256293139774657ae373425ccd58eabb05431dd283876"
3416 + version = "0.12.0"
3427 3417 dependencies = [
3428 3418 "makeover-geometry",
3429 3419 "makeover-layout",
@@ -3431,9 +3421,7 @@
3431 3421
3432 3422 [[package]]
3433 3423 name = "makeover-tui"
3434 - version = "0.17.0"
3435 - source = "registry+https://github.com/rust-lang/crates.io-index"
3436 - checksum = "6bec0a014d4da44d95dca4db82b5f9418edb4dd10fa5009e13832489939fcabd"
3424 + version = "0.18.0"
3437 3425 dependencies = [
3438 3426 "makeover",
3439 3427 "makeover-layout",
@@ -3442,9 +3430,7 @@
3442 3430
3443 3431 [[package]]
3444 3432 name = "makeover-webview"
3445 - version = "0.34.0"
3446 - source = "registry+https://github.com/rust-lang/crates.io-index"
3447 - checksum = "55628364f54e172d255701c3044be78f8a8eff3a2362d9b2960ad8cd54ccf9b7"
3433 + version = "0.35.0"
3448 3434 dependencies = [
3449 3435 "makeover-geometry",
3450 3436 "makeover-layout",
@@ -8381,6 +8367,14 @@
8381 8367 name = "quasi-store"
8382 8368 version = "0.1.0"
8383 8369
8370 + [[patch.unused]]
8371 + name = "alloy_tui"
8372 + version = "7.0.0"
8373 +
8374 + [[patch.unused]]
8375 + name = "makeover-immediate"
8376 + version = "0.17.0"
8377 +
8384 8378 [[patch.unused]]
8385 8379 name = "ops-status"
8386 8380 version = "0.1.0"
M Cargo.toml +1 -1
@@ -95,7 +95,7 @@
95 95 notify = "8.2"
96 96 notify-debouncer-mini = "0.7"
97 97 makeover = "2.5"
98 - makeover-tui = "0.17.0"
98 + makeover-tui = "0.18.0"
99 99 toml = "1.1"
100 100
101 101 # Enums
@@ -22,8 +22,8 @@
22 22 # The table CSS is generated here too: the columns are this app's, so the
23 23 # shared helper cannot know them, but the tracks and the narrowing rules come
24 24 # from the description rather than from hand-written nth-child cuts.
25 - makeover-webview = "0.34.0"
26 - makeover-layout = "0.18.0"
25 + makeover-webview = "0.35.0"
26 + makeover-layout = "0.19.0"
27 27 # Width. Direct rather than through makeover-webview, because the narrow table
28 28 # pass keys off SizeClass::Compact and a boundary reached transitively is a
29 29 # boundary nobody pinned.
@@ -112,8 +112,8 @@
112 112 # The forms emitter and the description it renders. Runtime deps, not build:
113 113 # form markup depends on the value, the error and the options at the moment a
114 114 # modal opens, so it cannot be materialised the way the stylesheet is.
115 - makeover-webview = "0.34.0"
116 - makeover-layout = "0.18.0"
115 + makeover-webview = "0.35.0"
116 + makeover-layout = "0.19.0"
117 117 # Browser opening
118 118 open = { workspace = true }
119 119