Take the makeover 0.18.0 cascade
makeover-layout 0.18.0 puts a region share on Arrangement and a page measure on
Screen, and the suite republished against it. `links` makes two copies of the
vocabulary in one graph a resolver error rather than a warning, so a consumer
left on the old pin does not lag quietly -- it fails to resolve.
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
3 files changed,
+13 insertions,
-13 deletions
| 2077 |
2077 |
|
[[package]]
|
| 2078 |
2078 |
|
name = "makeover-layout"
|
| 2079 |
2079 |
|
version = "0.18.0"
|
|
2080 |
+ |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2081 |
+ |
checksum = "48e5725b8dc2d30d5e46b324dd97757e14e61345607c9f55534a34768a6b54dd"
|
| 2080 |
2082 |
|
|
| 2081 |
2083 |
|
[[package]]
|
| 2082 |
2084 |
|
name = "makeover-touch"
|
| 2083 |
|
- |
version = "0.10.0"
|
|
2085 |
+ |
version = "0.11.0"
|
|
2086 |
+ |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2087 |
+ |
checksum = "aa8a698cf7ba31dc0a2256293139774657ae373425ccd58eabb05431dd283876"
|
| 2084 |
2088 |
|
dependencies = [
|
| 2085 |
2089 |
|
"makeover-geometry",
|
| 2086 |
2090 |
|
"makeover-layout",
|
| 2088 |
2092 |
|
|
| 2089 |
2093 |
|
[[package]]
|
| 2090 |
2094 |
|
name = "makeover-tui"
|
| 2091 |
|
- |
version = "0.16.1"
|
|
2095 |
+ |
version = "0.17.0"
|
|
2096 |
+ |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2097 |
+ |
checksum = "6bec0a014d4da44d95dca4db82b5f9418edb4dd10fa5009e13832489939fcabd"
|
| 2092 |
2098 |
|
dependencies = [
|
| 2093 |
2099 |
|
"makeover",
|
| 2094 |
2100 |
|
"makeover-layout",
|
| 2097 |
2103 |
|
|
| 2098 |
2104 |
|
[[package]]
|
| 2099 |
2105 |
|
name = "makeover-webview"
|
| 2100 |
|
- |
version = "0.33.0"
|
|
2106 |
+ |
version = "0.34.0"
|
|
2107 |
+ |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2108 |
+ |
checksum = "55628364f54e172d255701c3044be78f8a8eff3a2362d9b2960ad8cd54ccf9b7"
|
| 2101 |
2109 |
|
dependencies = [
|
| 2102 |
2110 |
|
"makeover-geometry",
|
| 2103 |
2111 |
|
"makeover-layout",
|
| 5159 |
5167 |
|
name = "synckit-config"
|
| 5160 |
5168 |
|
version = "0.2.0"
|
| 5161 |
5169 |
|
|
| 5162 |
|
- |
[[patch.unused]]
|
| 5163 |
|
- |
name = "makeover-build"
|
| 5164 |
|
- |
version = "0.26.0"
|
| 5165 |
|
- |
|
| 5166 |
|
- |
[[patch.unused]]
|
| 5167 |
|
- |
name = "makeover-immediate"
|
| 5168 |
|
- |
version = "0.15.0"
|
| 5169 |
|
- |
|
| 5170 |
5170 |
|
[[patch.unused]]
|
| 5171 |
5171 |
|
name = "kberg"
|
| 5172 |
5172 |
|
version = "0.1.0"
|
| 20 |
20 |
|
# it, which is the order the suite has always moved in: the constrained consumer
|
| 21 |
21 |
|
# finds the shape, and the shared crate takes it after it is known rather than
|
| 22 |
22 |
|
# before.
|
| 23 |
|
- |
makeover-tui = { version = "0.16.1", features = ["theme"] }
|
|
23 |
+ |
makeover-tui = { version = "0.17.0", features = ["theme"] }
|
| 24 |
24 |
|
ratatui = { version = "0.30", default-features = false }
|
| 25 |
25 |
|
# `Node::Rich` carries markdown source. A terminal has no markup to hand it to,
|
| 26 |
26 |
|
# so it takes the runs: `render_runs` is the words with the marks that were over
|
| 16 |
16 |
|
quasi-router = { path = "../quasi-router", version = "0.1.0" }
|
| 17 |
17 |
|
quasi-http = { path = "../quasi-http", version = "0.1.0" }
|
| 18 |
18 |
|
makeover-layout = "0.18.0"
|
| 19 |
|
- |
makeover-webview = "0.33.0"
|
|
19 |
+ |
makeover-webview = "0.34.0"
|
| 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 |
|
#
|