Skip to main content

max / audiofiles

Take quasi 0.14 The pin said 0.12 and the remote has been on 0.14; adding a dependency anywhere in the workspace forced a re-resolve and the version requirement refused it, which is the guard doing its job rather than a new problem. Nothing to forward-fix in the code. Both bumps were additive for what AF asks of the router and the renderer: the `quasi` feature builds clean and its 409 tests pass untouched.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-16 16:14 UTC
Signed with PGP, not checked
Commit: 8404a801cd96a0974b9be96d491e3f467a590dfe
Parent: ad861be
2 files changed, +11 insertions, -9 deletions
M Cargo.lock +9 -7
@@ -403,6 +403,8 @@
403 403 "eframe",
404 404 "gtk",
405 405 "keyring",
406 + "makeover-immediate",
407 + "makeover-layout",
406 408 "midir",
407 409 "open",
408 410 "parking_lot",
@@ -4242,7 +4244,7 @@
4242 4244
4243 4245 [[package]]
4244 4246 name = "quasi-immediate"
4245 - version = "0.12.0"
4247 + version = "0.14.0"
4246 4248 dependencies = [
4247 4249 "docengine",
4248 4250 "egui",
@@ -4252,7 +4254,7 @@
4252 4254
4253 4255 [[package]]
4254 4256 name = "quasi-router"
4255 - version = "0.12.0"
4257 + version = "0.14.0"
4256 4258 dependencies = [
4257 4259 "makeover-layout",
4258 4260 ]
@@ -7543,15 +7545,15 @@
7543 7545
7544 7546 [[patch.unused]]
7545 7547 name = "quasi-axum"
7546 - version = "0.12.0"
7548 + version = "0.14.0"
7547 7549
7548 7550 [[patch.unused]]
7549 7551 name = "quasi-basics"
7550 - version = "0.12.0"
7552 + version = "0.14.0"
7551 7553
7552 7554 [[patch.unused]]
7553 7555 name = "quasi-http"
7554 - version = "0.12.0"
7556 + version = "0.14.0"
7555 7557
7556 7558 [[patch.unused]]
7557 7559 name = "quasi-store"
@@ -7559,11 +7561,11 @@
7559 7561
7560 7562 [[patch.unused]]
7561 7563 name = "quasi-tauri"
7562 - version = "0.12.0"
7564 + version = "0.14.0"
7563 7565
7564 7566 [[patch.unused]]
7565 7567 name = "quasi-webview"
7566 - version = "0.12.0"
7568 + version = "0.14.0"
7567 7569
7568 7570 [[patch.unused]]
7569 7571 name = "kberg"
M Cargo.toml +2 -2
@@ -21,8 +21,8 @@
21 21 makeover-immediate = "0.25.0"
22 22 # The described screens, behind audiofiles-browser's `quasi` feature. By git URL
23 23 # with a version requirement, per the tree's rule for cross-repo deps.
24 - quasi-router = { git = "https://makenot.work/git/max/quasi.git", version = "0.12" }
25 - quasi-immediate = { git = "https://makenot.work/git/max/quasi.git", version = "0.12" }
24 + quasi-router = { git = "https://makenot.work/git/max/quasi.git", version = "0.14" }
25 + quasi-immediate = { git = "https://makenot.work/git/max/quasi.git", version = "0.14" }
26 26 egui = { version = "0.35", default-features = false, features = ["default_fonts"] }
27 27 egui_extras = { version = "0.35", default-features = false }
28 28 eframe = { version = "0.35", default-features = false, features = ["default_fonts", "glow"] }