feat: add just task runner, remove .cargo/config.toml#8
Merged
Conversation
- Add Justfile with setup, check, lint, test, deny, and ci recipes - Delete .cargo/config.toml (aliases migrate to Justfile; cargo's shell-escape prefix '!' is unimplemented in stable — see rust-lang/cargo#6575) - Install just via apt in devcontainer postCreateCommand - Replace bare 'git config' call with 'just setup' in postCreateCommand Closes #7
This was referenced May 25, 2026
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.
Description
Replaces the
.cargo/config.tomlalias table with ajusttask runner. Cargo's!-prefix shell-escape feature (needed to chain commands in aliases) is an unimplemented feature request in stable Cargo (rust-lang/cargo#6575) — the existingciandsetupaliases were silently broken as a result.justis already the standard in the Rust ecosystem (tokio, axum, embassy, etc.) and solves this cleanly.Related Issue
Closes #7
Changes
Justfilewith six recipes:setup,check,lint,test,deny, andcijust ci— chainslint,test,deny(fails fast on first error)just setup— configures git hooks (replaces the broken cargo alias)just(no args) — lists all available recipes.cargo/config.toml— all aliases fully migrated; file is no longer needed.devcontainer/devcontainer.jsonjustto theapt-get installlinegit config core.hooksPath .githookswithjust setupChecklist
just cipasses locallyCHANGELOG.mdupdated (if user-facing change)