Skip to main content

max / goingson

Take quasi from makenot.work now that it is public The deps pointed at astra because quasi was private on makenot.work and goingson is public, and cargo resolves an optional dependency's source even with the feature off: a public clone could not build at all against a URL it could not reach. quasi went public today, so the URL moves with it. ~/Code/.cargo/config.toml moves its [patch] block to match, or the redirect to the working copy stops applying. That file is untracked by anything, so this is the half of the change git records.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-09 01:23 UTC
Signed with PGP, not checked
Commit: d84b383acf73717ce8849c7051aba3080de49c0a
Parent: d786b98
1 file changed, +11 insertions, -8 deletions
@@ -36,14 +36,17 @@
36 36
37 37 # The quasi stack, behind the `quasi` feature. Git URLs redirected to the
38 38 # working copy by ~/Code/.cargo/config.toml, the way every cross-repo
39 - # dependency here is. These point at astra rather than makenot.work because
40 - # quasi is private there and goingson is public: cargo resolves an optional
41 - # dependency's source even with the feature off, so a public clone cannot
42 - # build against the makenot.work URL until quasi goes public.
43 - quasi-router = { git = "ssh://astra/home/max/git-mirrors/quasi.git", optional = true }
44 - quasi-http = { git = "ssh://astra/home/max/git-mirrors/quasi.git", optional = true }
45 - quasi-webview = { git = "ssh://astra/home/max/git-mirrors/quasi.git", optional = true }
46 - quasi-tauri = { git = "ssh://astra/home/max/git-mirrors/quasi.git", optional = true }
39 + # dependency here is.
40 + #
41 + # These pointed at astra until 2026-08-08, because quasi was private on
42 + # makenot.work and goingson is public, and cargo resolves an optional
43 + # dependency's source even with the feature off -- so a public clone could not
44 + # build at all against a URL it could not reach. quasi went public that day and
45 + # the URL moved here with it.
46 + quasi-router = { git = "https://makenot.work/git/max/quasi.git", optional = true }
47 + quasi-http = { git = "https://makenot.work/git/max/quasi.git", optional = true }
48 + quasi-webview = { git = "https://makenot.work/git/max/quasi.git", optional = true }
49 + quasi-tauri = { git = "https://makenot.work/git/max/quasi.git", optional = true }
47 50
48 51 # Tauri
49 52 tauri = { workspace = true, features = ["image-png", "devtools"] }