Skip to main content

max / goingson

Track makeover and alloy_tui 1.0.0, and take alloy_tui from the workspace got pinned alloy_tui itself rather than using a workspace dependency, so it sat on 0.1.0 while alloy moved to 0.1.1. Same shape as the makeover drift. Both now come from [workspace.dependencies], so one bump moves the whole tree.
Author: Max Johnson <me@maxj.phd> · 2026-07-19 21:42 UTC
Commit: 27b4f521bdb5002f750a1bb40e1b9e4e176b24eb
Parent: 79b36d0
3 files changed, +7 insertions, -6 deletions
M Cargo.lock +4 -4
@@ -62,9 +62,9 @@ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
62 62
63 63 [[package]]
64 64 name = "alloy_tui"
65 - version = "0.1.0"
65 + version = "1.0.0"
66 66 source = "registry+https://github.com/rust-lang/crates.io-index"
67 - checksum = "bb1ca159e66b17d1597702b240d0fa605e2591a52b79953832703690b6e190eb"
67 + checksum = "c0982d8c72496a71b7aa87b113e6777d4829ea8a15a0ee4dda97e2b922e1dbf2"
68 68 dependencies = [
69 69 "makeover",
70 70 "ratatui",
@@ -3326,9 +3326,9 @@ dependencies = [
3326 3326
3327 3327 [[package]]
3328 3328 name = "makeover"
3329 - version = "0.10.0"
3329 + version = "1.0.0"
3330 3330 source = "registry+https://github.com/rust-lang/crates.io-index"
3331 - checksum = "c62c909826835a6a4212081a4c95ef2db0d07c0cb1a550849c2e779b962f093e"
3331 + checksum = "15a1acf8af277255389ab1d7e53412e442983886413025c2f32f9d1dbde81d33"
3332 3332 dependencies = [
3333 3333 "include_dir",
3334 3334 "serde",
M Cargo.toml +2 -1
@@ -69,7 +69,8 @@ tauri-plugin-process = "2"
69 69 # Filesystem watching (db change notifications)
70 70 notify = "6.0"
71 71 notify-debouncer-mini = "0.4"
72 - makeover = "0.10.0"
72 + makeover = "1.0.0"
73 + alloy_tui = "1.0.0"
73 74 toml = "0.8"
74 75
75 76 # Enums
@@ -13,7 +13,7 @@ goingson-db-sqlite = { workspace = true }
13 13
14 14 # Alloy's themed-ratatui layer, from crates.io. MIT, carved out of the
15 15 # otherwise GPL alloy repo so it can be linked from here.
16 - alloy_tui = "0.1.0"
16 + alloy_tui.workspace = true
17 17
18 18 tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
19 19 sqlx = { workspace = true, features = ["sqlite"] }