Skip to content
Discussion options

You must be logged in to vote

Thanks for the kind words 🙏

Why cargo install won't work: Tauri ships GUI apps as bundled applications (.dmg, .AppImage, .msi) — not single Rust binaries. They include a compiled web frontend, OS entitlements, and code-signing. cargo install only knows how to drop a standalone binary into ~/.cargo/bin, so it has no way to install a Tauri app properly.

CLI install today, using the GitHub Releases artifacts.

macOS (universal — works on Apple Silicon and Intel):

URL=$(curl -sL 'https://api.github.com/repos/Xoshbin/asyar-launcher/releases?per_page=1' \
  | grep -oE '"https://[^"]+universal\.dmg"' \
  | tr -d '"' \
  | head -n1)
curl -L "$URL" -o /tmp/asyar.dmg
MOUNT=$(hdiutil attach -nobrowse…

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
2 replies
@CuriousFurBytes
Comment options

@Xoshbin
Comment options

Answer selected by CuriousFurBytes
Comment options

You must be logged in to vote
1 reply
@CuriousFurBytes
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants