Take the makeover suite that cannot be doubled
The lock held makeover-layout at 0.15.0 and 0.16.0 until makeover-immediate
moved too: the app pinned the new one directly and the renderer resolved the
old one, which is the two-copies shape in miniature.
makeover-layout 0.16.0 and makeover-webview 0.28.0 declare `links`, so cargo
permits one copy of each per dependency graph and a second one is a resolver
error naming both packages. The rest of the suite moves with them: an unmoved
crate is exactly the second copy the guard exists to catch.
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
2 files changed,
+18 insertions,
-18 deletions
| 3002 |
3002 |
|
|
| 3003 |
3003 |
|
[[package]]
|
| 3004 |
3004 |
|
name = "makeover-immediate"
|
| 3005 |
|
- |
version = "0.13.0"
|
|
3005 |
+ |
version = "0.14.0"
|
| 3006 |
3006 |
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 3007 |
|
- |
checksum = "46ed357809f7950967adb94ad16bba592311cbb0bd19cb192ba43faf3d3b6b47"
|
|
3007 |
+ |
checksum = "d7b24d62899d8768908ddd808b5354de0badd3e2602cfbfd43670f74b3a7fb14"
|
| 3008 |
3008 |
|
dependencies = [
|
| 3009 |
3009 |
|
"egui",
|
| 3010 |
3010 |
|
"egui_extras",
|
| 3013 |
3013 |
|
|
| 3014 |
3014 |
|
[[package]]
|
| 3015 |
3015 |
|
name = "makeover-layout"
|
| 3016 |
|
- |
version = "0.15.0"
|
|
3016 |
+ |
version = "0.16.0"
|
| 3017 |
3017 |
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 3018 |
|
- |
checksum = "9f18920c6ac0fe10a8f7b45c2224d0ad39e4863151b3fbe0fe042c938b9b0a9d"
|
|
3018 |
+ |
checksum = "5d02837b5ab4db4ee5759ddf8f77965336890d4b63c6e88e15b5782c9703138d"
|
| 3019 |
3019 |
|
|
| 3020 |
3020 |
|
[[package]]
|
| 3021 |
3021 |
|
name = "matchers"
|
| 7312 |
7312 |
|
"winnow 1.0.4",
|
| 7313 |
7313 |
|
]
|
| 7314 |
7314 |
|
|
| 7315 |
|
- |
[[patch.unused]]
|
| 7316 |
|
- |
name = "docengine"
|
| 7317 |
|
- |
version = "0.5.0"
|
| 7318 |
|
- |
|
| 7319 |
|
- |
[[patch.unused]]
|
| 7320 |
|
- |
name = "kberg"
|
| 7321 |
|
- |
version = "0.1.0"
|
| 7322 |
|
- |
|
| 7323 |
|
- |
[[patch.unused]]
|
| 7324 |
|
- |
name = "painhours"
|
| 7325 |
|
- |
version = "0.1.0"
|
| 7326 |
|
- |
|
| 7327 |
7315 |
|
[[patch.unused]]
|
| 7328 |
7316 |
|
name = "quasi-axum"
|
| 7329 |
7317 |
|
version = "0.1.0"
|
| 7347 |
7335 |
|
[[patch.unused]]
|
| 7348 |
7336 |
|
name = "quasi-webview"
|
| 7349 |
7337 |
|
version = "0.1.0"
|
|
7338 |
+ |
|
|
7339 |
+ |
[[patch.unused]]
|
|
7340 |
+ |
name = "docengine"
|
|
7341 |
+ |
version = "0.5.0"
|
|
7342 |
+ |
|
|
7343 |
+ |
[[patch.unused]]
|
|
7344 |
+ |
name = "kberg"
|
|
7345 |
+ |
version = "0.1.0"
|
|
7346 |
+ |
|
|
7347 |
+ |
[[patch.unused]]
|
|
7348 |
+ |
name = "painhours"
|
|
7349 |
+ |
version = "0.1.0"
|
| 17 |
17 |
|
# to compile against an API added in a later one. The two move together --
|
| 18 |
18 |
|
# makeover-immediate re-exports nothing, so the `Column` the app describes and
|
| 19 |
19 |
|
# the `Column` the renderer matches on have to be the same type.
|
| 20 |
|
- |
makeover-layout = "0.15.0"
|
| 21 |
|
- |
makeover-immediate = "0.13.0"
|
|
20 |
+ |
makeover-layout = "0.16.0"
|
|
21 |
+ |
makeover-immediate = "0.14.0"
|
| 22 |
22 |
|
egui = { version = "0.35", default-features = false, features = ["default_fonts"] }
|
| 23 |
23 |
|
egui_extras = { version = "0.35", default-features = false }
|
| 24 |
24 |
|
eframe = { version = "0.35", default-features = false, features = ["default_fonts", "glow"] }
|