Move the template's two host adapters to 0.63 with the rest
The bump took the four workspace pins to 0.63 and left quasi-tauri and
quasi-axum at 0.62. Every crate here ships as one git dependency at one
version, so a generated app asked the same URL for ^0.63 and ^0.62 at once
and resolved neither.
The workspace excludes the template, so cargo check never touched these
files, and the [patch] block would have hidden the mismatch from an in-tree
build anyway. Caught by generating outside ~/Code, which is the only test
that reaches these manifests.
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
2 files changed,
+2 insertions,
-2 deletions
| 16 |
16 |
|
# The Tauri host adapter. The `version` is not decoration: cargo checks it
|
| 17 |
17 |
|
# against whatever the branch head resolves to, so a generated app fails at
|
| 18 |
18 |
|
# resolution rather than compiling against a sibling it was not written for.
|
| 19 |
|
- |
quasi-tauri = { git = "https://makenot.work/git/max/quasi.git", version = "0.62" }
|
|
19 |
+ |
quasi-tauri = { git = "https://makenot.work/git/max/quasi.git", version = "0.63" }
|
| 20 |
20 |
|
quasi-router = { workspace = true }
|
| 21 |
21 |
|
quasi-webview = { workspace = true }
|
| 22 |
22 |
|
|
| 16 |
16 |
|
# The axum host adapter, carrying a `version` for the reason every other git
|
| 17 |
17 |
|
# dependency here does: the requirement is what makes a mismatch a resolution
|
| 18 |
18 |
|
# error instead of a compile error somewhere further in.
|
| 19 |
|
- |
quasi-axum = { git = "https://makenot.work/git/max/quasi.git", version = "0.62" }
|
|
19 |
+ |
quasi-axum = { git = "https://makenot.work/git/max/quasi.git", version = "0.63" }
|
| 20 |
20 |
|
quasi-router = { workspace = true }
|
| 21 |
21 |
|
quasi-webview = { workspace = true }
|
| 22 |
22 |
|
|