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.
3 files changed,
+4 insertions,
-4 deletions
| 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",
|
| 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 |
21 |
|
chrono = { workspace = true }
|
| 22 |
22 |
|
ratatui = "0.30"
|
| 23 |
23 |
|
anyhow = "1"
|
| 24 |
|
- |
makeover = "0.9.0"
|
|
24 |
+ |
makeover.workspace = true
|