Skip to main content

max / quasi

Take makeover 3.0 and makeover-tui 0.28 in the tui crates
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-18 14:38 UTC
Signed with PGP, not checked
Commit: 6f6e845968e207a6d5003511c77849f3be114f98
Parent: 4d03a67
3 files changed, +12 insertions, -12 deletions
M Cargo.lock +8 -8
@@ -2588,9 +2588,9 @@
2588 2588
2589 2589 [[package]]
2590 2590 name = "makeover"
2591 - version = "2.8.0"
2591 + version = "3.0.0"
2592 2592 source = "registry+https://github.com/rust-lang/crates.io-index"
2593 - checksum = "39b782e6e693c5134b50949f8c3407bb7d24a77b7f628281b0490c6380d65151"
2593 + checksum = "3e6da78c376074e48eb2324394004afc847e674e05ed2ea4bec1331073990b3f"
2594 2594 dependencies = [
2595 2595 "include_dir",
2596 2596 "serde",
@@ -2632,9 +2632,9 @@
2632 2632
2633 2633 [[package]]
2634 2634 name = "makeover-tui"
2635 - version = "0.27.0"
2635 + version = "0.28.0"
2636 2636 source = "registry+https://github.com/rust-lang/crates.io-index"
2637 - checksum = "873c3ff9dec3ee250e192ede31664c9d985fe999a0c0c27edde9748d4fa67339"
2637 + checksum = "6d0d5477580f4514a63a66c0955ea32323798fedcf78433c11769bee7ef65268"
2638 2638 dependencies = [
2639 2639 "makeover",
2640 2640 "makeover-layout",
@@ -6197,10 +6197,6 @@
6197 6197 "winnow 1.0.4",
6198 6198 ]
6199 6199
6200 - [[patch.unused]]
6201 - name = "quasi-type"
6202 - version = "0.1.0"
6203 -
6204 6200 [[patch.unused]]
6205 6201 name = "kberg"
6206 6202 version = "0.1.0"
@@ -6220,3 +6216,7 @@
6220 6216 [[patch.unused]]
6221 6217 name = "synckit-client"
6222 6218 version = "0.8.0"
6219 +
6220 + [[patch.unused]]
6221 + name = "quasi-type"
6222 + version = "0.1.0"
@@ -30,11 +30,11 @@
30 30 # because a bench calling a trait method should name the trait it calls.
31 31 quasi-http = { path = "../quasi-http", version = "0.27.0" }
32 32 makeover-layout = "0.28.2"
33 - makeover-tui = { version = "0.27.0", features = ["theme"] }
33 + makeover-tui = { version = "0.28.0", features = ["theme"] }
34 34 # Only to load a bundled theme file. `makeover_tui::Theme` is `#[non_exhaustive]`,
35 35 # so `Theme::from_theme` is the one way to get one, the same reason quasi-tui's
36 36 # tests take this.
37 - makeover = "2.5"
37 + makeover = "3.0"
38 38 ratatui = { version = "0.30", default-features = false }
39 39 # Allocation counting, and only that. Optional and off by default. It is here
40 40 # rather than a hand-written `GlobalAlloc` because the workspace forbids
@@ -20,7 +20,7 @@
20 20 # it, which is the order the suite has always moved in: the constrained consumer
21 21 # finds the shape, and the shared crate takes it after it is known rather than
22 22 # before.
23 - makeover-tui = { version = "0.27.0", features = ["theme"] }
23 + makeover-tui = { version = "0.28.0", features = ["theme"] }
24 24 ratatui = { version = "0.30", default-features = false }
25 25 # `Node::Rich` carries markdown source. A terminal has no markup to hand it to,
26 26 # so it takes the runs: `render_runs` is the words with the marks that were over
@@ -33,4 +33,4 @@
33 33 # Only the tests need this, and only to load a bundled theme file:
34 34 # `makeover_tui::Theme` is `#[non_exhaustive]`, so `Theme::from_theme` is the
35 35 # one way to get one and a test cannot hand-build a partial.
36 - makeover = "2.5"
36 + makeover = "3.0"