feat(container): add Rust language ecosystem support#2
Merged
matthew-on-git merged 3 commits intomainfrom Mar 4, 2026
Merged
Conversation
Add Rust as the 8th supported language in dev-toolchain: - Dockerfile: rust:1-slim-bookworm builder stage with cargo-binstall, cargo-audit, cargo-deny; COPY full toolchain to runtime - Makefile: HAS_RUST detection + clippy, rustfmt, cargo-audit, cargo-deny, cargo test across _lint, _format, _fix, _test, _security, _docs, _init targets - scripts/install-rust.sh: verify-only (tools COPY'd from builder) - tests/test-rust.sh: validate all Rust tools on PATH - STABILITY.md: update language count to 8 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add a seventh critical rule to all agent shim files: never suppress failing checks. Fix the root cause instead of adding blanket suppressions, commenting out code, or disabling rules. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The rust:1-slim-bookworm image does not ship curl. Add apt-get install for curl and ca-certificates so cargo-binstall can be downloaded. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
rust:1-slim-bookwormbuilder stage with cargo-binstall, cargo-audit, cargo-deny_lint(clippy),_format/_fix(rustfmt),_test(cargo test),_security(cargo-audit + cargo-deny),_docs(version report),_init(scaffold clippy.toml, rustfmt.toml, deny.toml)install-rust.sh) and test script (test-rust.sh)Test plan
make buildsucceeds (container builds with Rust toolchain)make testpasses (test-rust.shvalidates all tools on PATH)rustin.devrail.yml, runmake checkmake fixapplies rustfmt formattingmake initscaffoldsclippy.toml,rustfmt.toml,deny.toml🤖 Generated with Claude Code