Pin makeover-webview 0.75.1, which states the layout version it needs
0.75.0 says `makeover-layout = "0.44"` and is written against 0.44.2's chart
types, so it resolves against an older lock and does not compile. Found by
makeover-build's publish rather than by anything here, since this tree's lock
already had 0.44.2.
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01P8ostB2UmZJGj5WjSHRSot
3 files changed,
+4 insertions,
-4 deletions
| 2705 |
2705 |
|
|
| 2706 |
2706 |
|
[[package]]
|
| 2707 |
2707 |
|
name = "makeover-webview"
|
| 2708 |
|
- |
version = "0.75.0"
|
|
2708 |
+ |
version = "0.75.1"
|
| 2709 |
2709 |
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 2710 |
|
- |
checksum = "310784c964ea40ab1bb4279a6d30dafb00e442af72389f0d2acaaf697271ef0f"
|
|
2710 |
+ |
checksum = "ba1c7d0eaf7a3b6262afb1e3b0e1ad2b1e1aec09182342869a4a0c3e122988dd"
|
| 2711 |
2711 |
|
dependencies = [
|
| 2712 |
2712 |
|
"makeover-geometry",
|
| 2713 |
2713 |
|
"makeover-layout",
|
| 41 |
41 |
|
makeover-layout = "0.44"
|
| 42 |
42 |
|
# The renderer's own escaper, so the staged path fills a hole exactly the way
|
| 43 |
43 |
|
# `Node::Text` does and the guarantee is not quietly reimplemented.
|
| 44 |
|
- |
makeover-webview = "0.75"
|
|
44 |
+ |
makeover-webview = "0.75.1"
|
| 45 |
45 |
|
makeover-tui = { version = "0.44", features = ["theme"] }
|
| 46 |
46 |
|
# Only to load a bundled theme file. `makeover_tui::Theme` is `#[non_exhaustive]`,
|
| 47 |
47 |
|
# so `Theme::from_theme` is the one way to get one, the same reason quasi-tui's
|
| 16 |
16 |
|
quasi-router = { path = "../quasi-router", version = "0.109" }
|
| 17 |
17 |
|
quasi-http = { path = "../quasi-http", version = "0.109" }
|
| 18 |
18 |
|
makeover-layout = "0.44"
|
| 19 |
|
- |
makeover-webview = "0.75"
|
|
19 |
+ |
makeover-webview = "0.75.1"
|
| 20 |
20 |
|
# `Node::Rich` carries markdown source and this is what turns it into markup.
|
| 21 |
21 |
|
# Sanitising comes with it, which is why the node can carry what a user typed.
|
| 22 |
22 |
|
#
|