Skip to main content

max / audiofiles

Take quasi 0.72 and the makeover suite behind it makeover-layout 0.37.0 added Field::as_instant, and its links key makes the whole suite move together: layout 0.37.0, immediate 0.38.0. Nothing here describes a datetime, so this is the pin half of the forward fix.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-28 15:25 UTC
Signed with PGP, not checked
Commit: 02758d4248def2e03409e402bf39a9a297277289
Parent: 59abef7
2 files changed, +20 insertions, -20 deletions
M Cargo.lock +16 -16
@@ -3074,9 +3074,9 @@
3074 3074
3075 3075 [[package]]
3076 3076 name = "makeover-immediate"
3077 - version = "0.37.0"
3077 + version = "0.38.0"
3078 3078 source = "registry+https://github.com/rust-lang/crates.io-index"
3079 - checksum = "7f5f3a20848a93e0c939d898426e9c1d95cca51ed1389f664aa6b83323f9e825"
3079 + checksum = "7ee9cb9fe796db8803518e8726e01708fafd64fc52595fd7d8f040fb9f4345fe"
3080 3080 dependencies = [
3081 3081 "egui",
3082 3082 "egui_extras",
@@ -3086,9 +3086,9 @@
3086 3086
3087 3087 [[package]]
3088 3088 name = "makeover-layout"
3089 - version = "0.36.0"
3089 + version = "0.37.0"
3090 3090 source = "registry+https://github.com/rust-lang/crates.io-index"
3091 - checksum = "9ffed28fd6f311d8603b9fe02cffc14bacf29b840c486f84e8ff4866a4748514"
3091 + checksum = "369bc3c3e0ee91d24b3552f48f1ecb1764bca953725fb817df33b2dc80f2d34f"
3092 3092
3093 3093 [[package]]
3094 3094 name = "makeover-timing"
@@ -4256,7 +4256,7 @@
4256 4256
4257 4257 [[package]]
4258 4258 name = "quasi-immediate"
4259 - version = "0.71.0"
4259 + version = "0.72.0"
4260 4260 dependencies = [
4261 4261 "docengine",
4262 4262 "egui",
@@ -4267,7 +4267,7 @@
4267 4267
4268 4268 [[package]]
4269 4269 name = "quasi-router"
4270 - version = "0.71.0"
4270 + version = "0.72.0"
4271 4271 dependencies = [
4272 4272 "makeover-layout",
4273 4273 ]
@@ -7568,21 +7568,25 @@
7568 7568 name = "painhours"
7569 7569 version = "0.1.0"
7570 7570
7571 + [[patch.unused]]
7572 + name = "quasi-type"
7573 + version = "0.1.1"
7574 +
7571 7575 [[patch.unused]]
7572 7576 name = "quasi-axum"
7573 - version = "0.71.0"
7577 + version = "0.72.0"
7574 7578
7575 7579 [[patch.unused]]
7576 7580 name = "quasi-basics"
7577 - version = "0.71.0"
7581 + version = "0.72.0"
7578 7582
7579 7583 [[patch.unused]]
7580 7584 name = "quasi-http"
7581 - version = "0.71.0"
7585 + version = "0.72.0"
7582 7586
7583 7587 [[patch.unused]]
7584 7588 name = "quasi-notifs"
7585 - version = "0.71.0"
7589 + version = "0.72.0"
7586 7590
7587 7591 [[patch.unused]]
7588 7592 name = "quasi-store"
@@ -7590,12 +7594,8 @@
7590 7594
7591 7595 [[patch.unused]]
7592 7596 name = "quasi-tauri"
7593 - version = "0.71.0"
7597 + version = "0.72.0"
7594 7598
7595 7599 [[patch.unused]]
7596 7600 name = "quasi-webview"
7597 - version = "0.71.0"
7598 -
7599 - [[patch.unused]]
7600 - name = "quasi-type"
7601 - version = "0.1.0"
7601 + version = "0.72.0"
M Cargo.toml +4 -4
@@ -17,8 +17,8 @@
17 17 # to compile against an API added in a later one. The two move together --
18 18 # makeover-immediate re-exports nothing, so the `Column` the app describes and
19 19 # the `Column` the renderer matches on have to be the same type.
20 - makeover-layout = "0.36.0"
21 - makeover-immediate = "0.37.0"
20 + makeover-layout = "0.37.0"
21 + makeover-immediate = "0.38.0"
22 22 # The time axis. Minor rather than exact patch: it re-exports nothing and no
23 23 # type of its crosses a renderer boundary, so it is under the same rule as
24 24 # makeover-geometry above rather than the layout/immediate pair below.
@@ -26,8 +26,8 @@
26 26 # The described screens, which are audiofiles-browser's screens. By git URL with
27 27 # a version requirement, per the tree's rule for cross-repo deps. They were
28 28 # behind a `quasi` feature until 2026-08-25, when the last flip landed.
29 - quasi-router = { git = "https://makenot.work/git/max/quasi.git", version = "0.71" }
30 - quasi-immediate = { git = "https://makenot.work/git/max/quasi.git", version = "0.71" }
29 + quasi-router = { git = "https://makenot.work/git/max/quasi.git", version = "0.72" }
30 + quasi-immediate = { git = "https://makenot.work/git/max/quasi.git", version = "0.72" }
31 31 egui = { version = "0.35", default-features = false, features = ["default_fonts"] }
32 32 egui_extras = { version = "0.35", default-features = false }
33 33 eframe = { version = "0.35", default-features = false, features = ["default_fonts", "glow"] }