Skip to main content

max / goingson

Track makeover 0.10.0, and take got's version from the workspace got pinned makeover itself rather than using the workspace dependency, so bumping the workspace left it behind on 0.9.0. Cargo treats 0.9 and 0.10 as incompatible majors, so the graph carried both and ThemeColors became two distinct types. Pointing got at the workspace version means one bump moves the whole tree.
Author: Max Johnson <me@maxj.phd> · 2026-07-19 20:25 UTC
Commit: 75cab7e4b06c5da3b133a4039347d69efcc6d9a4
Parent: f49a2d3
3 files changed, +4 insertions, -4 deletions
M Cargo.lock +2 -2
@@ -3324,9 +3324,9 @@ dependencies = [
3324 3324
3325 3325 [[package]]
3326 3326 name = "makeover"
3327 - version = "0.9.0"
3327 + version = "0.10.0"
3328 3328 source = "registry+https://github.com/rust-lang/crates.io-index"
3329 - checksum = "8901217cbffb659a961ac7b63fbfb72bacd4eda13b1d5a7329a9ffed54616165"
3329 + checksum = "c62c909826835a6a4212081a4c95ef2db0d07c0cb1a550849c2e779b962f093e"
3330 3330 dependencies = [
3331 3331 "include_dir",
3332 3332 "serde",
M Cargo.toml +1 -1
@@ -69,7 +69,7 @@ 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.9.0"
72 + makeover = "0.10.0"
73 73 toml = "0.8"
74 74
75 75 # Enums
@@ -21,4 +21,4 @@ uuid = { workspace = true }
21 21 chrono = { workspace = true }
22 22 ratatui = "0.30"
23 23 anyhow = "1"
24 - makeover = "0.9.0"
24 + makeover.workspace = true