Rewrite backend in Rust#1
Merged
Merged
Conversation
Delete the Go sources (cmd/, internal/), go.mod/go.sum, the GoReleaser config, the webassets embed package, and the web/go.mod module marker now that the Rust binary is the implementation.
Replace the Go/GoReleaser pipeline with cargo-based workflows: CI runs fmt, clippy, and a cross-platform test matrix (web assets built once and shared via artifact for the rust-embed compile-time dependency); release builds native binaries across linux/darwin/windows x amd64/arm64, gates on fmt+clippy+test, publishes archives with checksums, and updates the Homebrew cask. Align Cargo.toml to 0.3.0 so the tag-version guard matches the current release line; drop the Go section from .gitignore.
State the Rust + pnpm build requirements instead of Go, and remove the gopher banner image (and its now-unused asset).
Add --locked to CI clippy and test so a stale Cargo.lock fails PR CI instead of only failing under the release build, and add a snapshot job that runs cargo build --release --locked plus the archive packaging steps on linux and windows, mirroring the release workflow so packaging regressions surface before a tag is pushed.
7ba1cac to
ad3ae06
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Validation
Notes