Skip to main content

max / quasi

Pin the makeover crates to the versions this code needs The pins said makeover-layout 0.8.2 and makeover-webview 0.17.1 while the code used RowPart::Tokens, which arrived in 0.9. It compiled only because a temporary [patch.crates-io] in ~/Code/.cargo/config.toml was forcing the local 0.9 for every requirement in the tree, which is the drift such a patch can hide and the reason it was removed rather than kept.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-09 02:21 UTC
Signed with PGP, not checked
Commit: 6b6b0ac4ce64df140e8fe424f1e4b0c2b5b2c49f
Parent: 1d75f23
3 files changed, +13 insertions, -17 deletions
M Cargo.lock +10 -14
@@ -1726,15 +1726,15 @@
1726 1726
1727 1727 [[package]]
1728 1728 name = "makeover-layout"
1729 - version = "0.8.2"
1729 + version = "0.9.0"
1730 1730 source = "registry+https://github.com/rust-lang/crates.io-index"
1731 - checksum = "9883c75a9d26fce10be2b979c01a74f8c07513800a70ec6bf598de1e7d411f1b"
1731 + checksum = "95b7ccafc965eb90f308b68d6fb00f6ff642a453b661f4c452cb20aeb60e3990"
1732 1732
1733 1733 [[package]]
1734 1734 name = "makeover-touch"
1735 - version = "0.4.0"
1735 + version = "0.5.0"
1736 1736 source = "registry+https://github.com/rust-lang/crates.io-index"
1737 - checksum = "369083d008157d6d95cd2ac0b8dbfee8689d80eb4c2883b48c2ef627a0116fdb"
1737 + checksum = "f3228b2d380252585ab2fadd6146229bb17ba51fab1db5d8e6001d7e0e40fbb4"
1738 1738 dependencies = [
1739 1739 "makeover-geometry",
1740 1740 "makeover-layout",
@@ -1742,9 +1742,9 @@
1742 1742
1743 1743 [[package]]
1744 1744 name = "makeover-webview"
1745 - version = "0.17.1"
1745 + version = "0.18.0"
1746 1746 source = "registry+https://github.com/rust-lang/crates.io-index"
1747 - checksum = "c8cfb1a75dcdafc4eab17ca9d1e2ae59f66dea218832c604c1cde5c01a1a799c"
1747 + checksum = "b0bec4e3395087aa3777bea4aa559d1b90d53e170ae2012c77095b29be16a1c2"
1748 1748 dependencies = [
1749 1749 "makeover-geometry",
1750 1750 "makeover-layout",
@@ -4530,6 +4530,10 @@
4530 4530 source = "registry+https://github.com/rust-lang/crates.io-index"
4531 4531 checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
4532 4532
4533 + [[patch.unused]]
4534 + name = "docengine"
4535 + version = "0.4.0"
4536 +
4533 4537 [[patch.unused]]
4534 4538 name = "synckit-client"
4535 4539 version = "0.8.0"
@@ -4549,11 +4553,3 @@
4549 4553 [[patch.unused]]
4550 4554 name = "tagtree"
4551 4555 version = "0.4.0"
4552 -
4553 - [[patch.unused]]
4554 - name = "docengine"
4555 - version = "0.4.0"
4556 -
4557 - [[patch.unused]]
4558 - name = "makeover-layout"
4559 - version = "0.9.0"
@@ -13,4 +13,4 @@
13 13 workspace = true
14 14
15 15 [dependencies]
16 - makeover-layout = "0.8.2"
16 + makeover-layout = "0.9"
@@ -15,5 +15,5 @@
15 15 [dependencies]
16 16 quasi-router = { path = "../quasi-router", version = "0.1.0" }
17 17 quasi-http = { path = "../quasi-http", version = "0.1.0" }
18 - makeover-layout = "0.8.2"
19 - makeover-webview = "0.17.1"
18 + makeover-layout = "0.9"
19 + makeover-webview = "0.18"