Move to makeover 2.1.0, and alloy_tui 2.0.0 with it
The app was pinned to makeover 1.0.0 while Balanced Breakfast is on 2.1.0
and audiofiles on 2.0.0, so GoingsOn was the only consumer still reading
a two-major-versions-old copy of the shared themes. Nothing in the app's
surface was touched by the 2.0.0 break, which was confined to parse_meta
and extract_colors.
alloy_tui goes 1.0.0 to 2.0.0 in the same commit because it is not
optional: alloy_tui 1.0.0 depends on makeover 1.0.0, and got passes a
ThemeColors across that boundary, so the two majors in one graph failed
to compile. alloy_tui 2.0.0 is on makeover 2.1.0 and keeps from_theme's
signature.
Tests pass and got's clippy warning count is unchanged at 11.
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
2 files changed,
+7 insertions,
-7 deletions
| 61 |
61 |
|
|
| 62 |
62 |
|
[[package]]
|
| 63 |
63 |
|
name = "alloy_tui"
|
| 64 |
|
- |
version = "1.0.0"
|
|
64 |
+ |
version = "2.0.0"
|
| 65 |
65 |
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 66 |
|
- |
checksum = "c0982d8c72496a71b7aa87b113e6777d4829ea8a15a0ee4dda97e2b922e1dbf2"
|
|
66 |
+ |
checksum = "fbb156a777c35110c1b19aac32d9eb52b0c05048812c8cd74a7f3b51b44b1552"
|
| 67 |
67 |
|
dependencies = [
|
| 68 |
68 |
|
"makeover",
|
| 69 |
69 |
|
"ratatui",
|
| 3417 |
3417 |
|
|
| 3418 |
3418 |
|
[[package]]
|
| 3419 |
3419 |
|
name = "makeover"
|
| 3420 |
|
- |
version = "1.0.0"
|
|
3420 |
+ |
version = "2.1.0"
|
| 3421 |
3421 |
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 3422 |
|
- |
checksum = "15a1acf8af277255389ab1d7e53412e442983886413025c2f32f9d1dbde81d33"
|
|
3422 |
+ |
checksum = "a26aeb770bb59143a83a7bffa1150930064b785abbe6b7e99da59697cb592032"
|
| 3423 |
3423 |
|
dependencies = [
|
| 3424 |
3424 |
|
"include_dir",
|
| 3425 |
3425 |
|
"serde",
|
| 3426 |
|
- |
"toml 0.8.2",
|
|
3426 |
+ |
"toml 1.1.3+spec-1.1.0",
|
| 3427 |
3427 |
|
]
|
| 3428 |
3428 |
|
|
| 3429 |
3429 |
|
[[package]]
|
| 81 |
81 |
|
# Filesystem watching (db change notifications)
|
| 82 |
82 |
|
notify = "8.2"
|
| 83 |
83 |
|
notify-debouncer-mini = "0.7"
|
| 84 |
|
- |
makeover = "1.0.0"
|
| 85 |
|
- |
alloy_tui = "1.0.0"
|
|
84 |
+ |
makeover = "2.1.0"
|
|
85 |
+ |
alloy_tui = "2.0.0"
|
| 86 |
86 |
|
toml = "1.1"
|
| 87 |
87 |
|
|
| 88 |
88 |
|
# Enums
|