Skip to main content

max / alloy

Take alloy_tui 5.0.0 5.0.0 moved the family intents behind a named field so makeover's border-strong and Alloy's focus ring cannot be read for one another. Two call sites here read a family intent; both now say theme.makeover.content_primary. The two border tokens are Alloy's own and did not move, and skelgen only calls the free functions, which did not either. Leaves the rio-to-shop swap dirty and untouched: that diff is the Containerfile, docs and templates, disjoint from these four files.
Author: Max Johnson <me@maxj.phd> · 2026-08-01 14:36 UTC
Signed with PGP, not checked
Commit: 89a4d421ea74a0e4cace75bbceb36f7c022042c4
Parent: 3c89165
4 files changed, +11 insertions, -10 deletions
M Cargo.lock +7 -6
@@ -37,9 +37,9 @@
37 37
38 38 [[package]]
39 39 name = "alloy_tui"
40 - version = "4.1.0"
40 + version = "5.0.0"
41 41 source = "registry+https://github.com/rust-lang/crates.io-index"
42 - checksum = "5cf116bef7cc46acf2d27c2958127cca7508616578dbd82ac1949106509508c7"
42 + checksum = "946ea622874b94d410acfa5f798f3c62da2fd65908b1ed02afff2cf8b486a9cb"
43 43 dependencies = [
44 44 "makeover",
45 45 "makeover-geometry",
@@ -907,9 +907,9 @@
907 907
908 908 [[package]]
909 909 name = "makeover-geometry"
910 - version = "0.2.0"
910 + version = "0.4.0"
911 911 source = "registry+https://github.com/rust-lang/crates.io-index"
912 - checksum = "fee41544ab308cc2b66da57ec381d19ca763e85627410b0e27361539e3836873"
912 + checksum = "ec63a50eb9934c2cd416912048c9437a61657064c1947e40571f5fd37a22ffe6"
913 913
914 914 [[package]]
915 915 name = "makeover-layout"
@@ -919,10 +919,11 @@
919 919
920 920 [[package]]
921 921 name = "makeover-tui"
922 - version = "0.5.1"
922 + version = "0.7.0"
923 923 source = "registry+https://github.com/rust-lang/crates.io-index"
924 - checksum = "70b1561cdd6db865a4a427d49c4752d4bac53a0e2c6038e869ea95ab808469ff"
924 + checksum = "e0174c5f2e03f2fc856589d061f5718c2bce77e2d15d1ac6d4bdcb0f53134d63"
925 925 dependencies = [
926 + "makeover",
926 927 "makeover-layout",
927 928 "ratatui",
928 929 ]
@@ -13,7 +13,7 @@
13 13 path = "src/main.rs"
14 14
15 15 [dependencies]
16 - alloy_tui = "4.1.0"
16 + alloy_tui = "5.0.0"
17 17 anyhow = "1"
18 18 clap = { version = "4", features = ["derive"] }
19 19 ratatui.workspace = true
@@ -13,7 +13,7 @@
13 13 path = "src/main.rs"
14 14
15 15 [dependencies]
16 - alloy_tui = "4.1.0"
16 + alloy_tui = "5.0.0"
17 17 anyhow = "1"
18 18 clap = { version = "4", features = ["derive"] }
19 19 makeover.workspace = true
@@ -2677,7 +2677,7 @@
2677 2677 Span::styled(
2678 2678 format!("{box_glyph} "),
2679 2679 Style::default()
2680 - .fg(theme.content_primary)
2680 + .fg(theme.makeover.content_primary)
2681 2681 .add_modifier(Modifier::REVERSED),
2682 2682 )
2683 2683 } else {
@@ -3244,7 +3244,7 @@
3244 3244 Span::styled(
3245 3245 format!("{box_glyph} "),
3246 3246 Style::default()
3247 - .fg(theme.content_primary)
3247 + .fg(theme.makeover.content_primary)
3248 3248 .add_modifier(Modifier::REVERSED),
3249 3249 )
3250 3250 } else {