Skip to main content

max / goingson

Follow the makeover cascade and quasi's Render to Serves rename Pins: makeover-layout 0.17.0, makeover-webview 0.33.0, makeover-build 0.26.0, makeover-tui 0.16.1. The links guard on makeover-layout means one copy per graph, so the bump is tree-wide. Call sites: quasi_http::Render is quasi_http::Serves across the nine describing modules' tests, import line only.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-12 19:26 UTC
Signed with PGP, not checked
Commit: fb0a181b238905982604b11db6af81b80f19cd9e
Parent: dfd5c63
12 files changed, +24 insertions, -30 deletions
M Cargo.lock +9 -15
@@ -3398,9 +3398,7 @@
3398 3398
3399 3399 [[package]]
3400 3400 name = "makeover-build"
3401 - version = "0.25.0"
3402 - source = "registry+https://github.com/rust-lang/crates.io-index"
3403 - checksum = "82681b81f022c342cb764142eb2475430d882e132aa143c6c7fc6871c492e4f8"
3401 + version = "0.26.0"
3404 3402 dependencies = [
3405 3403 "makeover",
3406 3404 "makeover-geometry",
@@ -3415,15 +3413,11 @@
3415 3413
3416 3414 [[package]]
3417 3415 name = "makeover-layout"
3418 - version = "0.16.0"
3419 - source = "registry+https://github.com/rust-lang/crates.io-index"
3420 - checksum = "5d02837b5ab4db4ee5759ddf8f77965336890d4b63c6e88e15b5782c9703138d"
3416 + version = "0.17.0"
3421 3417
3422 3418 [[package]]
3423 3419 name = "makeover-touch"
3424 - version = "0.9.0"
3425 - source = "registry+https://github.com/rust-lang/crates.io-index"
3426 - checksum = "3aaa60b135b4d57395c123bb6d70a0384b80823ebc5b8959fdf056cbc5a32043"
3420 + version = "0.10.0"
3427 3421 dependencies = [
3428 3422 "makeover-geometry",
3429 3423 "makeover-layout",
@@ -3431,9 +3425,7 @@
3431 3425
3432 3426 [[package]]
3433 3427 name = "makeover-tui"
3434 - version = "0.15.0"
3435 - source = "registry+https://github.com/rust-lang/crates.io-index"
3436 - checksum = "17f9d6a744f90ad780bd7b98d8c4b1bb2c1e16116e66b9b87eaaee085975a7e1"
3428 + version = "0.16.1"
3437 3429 dependencies = [
3438 3430 "makeover",
3439 3431 "makeover-layout",
@@ -3442,9 +3434,7 @@
3442 3434
3443 3435 [[package]]
3444 3436 name = "makeover-webview"
3445 - version = "0.32.0"
3446 - source = "registry+https://github.com/rust-lang/crates.io-index"
3447 - checksum = "9ccc45dfb72ca709785ced43eb8b30644df0ef59a618aca9fc6c6ab8553c77de"
3437 + version = "0.33.0"
3448 3438 dependencies = [
3449 3439 "makeover-geometry",
3450 3440 "makeover-layout",
@@ -8380,3 +8370,7 @@
8380 8370 [[patch.unused]]
8381 8371 name = "quasi-store"
8382 8372 version = "0.1.0"
8373 +
8374 + [[patch.unused]]
8375 + name = "makeover-immediate"
8376 + version = "0.15.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.15"
98 + makeover-tui = "0.16.1"
99 99 toml = "1.1"
100 100
101 101 # Enums
@@ -18,12 +18,12 @@
18 18 # Materialises all three generated files: themes/, geometry.css, layout.css,
19 19 # and holds both drift checks this build.rs used to carry itself: touch density
20 20 # as of 0.17, breakpoints as of 0.18.
21 - makeover-build = "0.25.0"
21 + makeover-build = "0.26.0"
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.32.0"
26 - makeover-layout = "0.16.0"
25 + makeover-webview = "0.33.0"
26 + makeover-layout = "0.17.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.32.0"
116 - makeover-layout = "0.16.0"
115 + makeover-webview = "0.33.0"
116 + makeover-layout = "0.17.0"
117 117 # Browser opening
118 118 open = { workspace = true }
119 119
@@ -8,7 +8,7 @@
8 8 use std::sync::Arc;
9 9
10 10 use goingson_core::{NewContact, NewContactEmail, NewSocialHandle};
11 - use quasi_http::Render as _;
11 + use quasi_http::Serves as _;
12 12 use quasi_router::Outcome;
13 13 use quasi_router::{Params, Request, Response};
14 14
@@ -10,7 +10,7 @@
10 10
11 11 use chrono::{Duration, Utc};
12 12 use goingson_core::{BodyFormat, Email, EmailId, NewEmailWithTracking};
13 - use quasi_http::Render as _;
13 + use quasi_http::Serves as _;
14 14 use quasi_router::screen::Row;
15 15 use quasi_router::{Node, Outcome, Params, Request, Response};
16 16
@@ -8,7 +8,7 @@
8 8 use std::sync::Arc;
9 9
10 10 use goingson_core::{MonthlyGoalStatus, NewTask, Priority, monthly_review};
11 - use quasi_http::Render as _;
11 + use quasi_http::Serves as _;
12 12 use quasi_router::Outcome;
13 13 use quasi_router::{Params, Request, Response};
14 14
@@ -7,7 +7,7 @@
7 7
8 8 use chrono::{Duration, Utc};
9 9 use goingson_core::{NewProblem, Problem, ProblemStatus};
10 - use quasi_http::Render as _;
10 + use quasi_http::Serves as _;
11 11 use quasi_router::Outcome;
12 12 use quasi_router::{Params, Request, Response};
13 13
@@ -8,7 +8,7 @@
8 8 use std::sync::Arc;
9 9
10 10 use goingson_core::{NewProject, ProjectStatus, ProjectType};
11 - use quasi_http::Render as _;
11 + use quasi_http::Serves as _;
12 12 use quasi_router::Outcome;
13 13 use quasi_router::{Params, Request, Response};
14 14