template(rustup): rename the rust template to rustup#98
Merged
Conversation
The base image was renamed from ghcr.io/bare-devcontainer/rust to ghcr.io/bare-devcontainer/rustup in bare-devcontainer/images to clarify that it ships rustup only, with no pre-installed Rust toolchain. Rename the template accordingly so it keeps matching its base image: src/rust -> src/rustup (template id "rust" -> "rustup"), test/rust -> test/rustup, the cargo cache volume prefixes, and the documentation references. The display name stays "Rust", following the golang/Go precedent. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_015CXqrAEdJb8wrHuaVCM96S
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
The base image was renamed from
ghcr.io/bare-devcontainer/rusttoghcr.io/bare-devcontainer/rustupin bare-devcontainer/images#226, to clarify that it shipsrustuponly and no pre-installed Rust toolchain. This applies the corresponding change here so the template keeps matching its base image, as described inAGENTS.md("Each template undersrc/corresponds to aghcr.io/bare-devcontainer/<image>base image").Changes
src/rust/→src/rustup/andtest/rust/→test/rustup/(CI resolves both the build matrix and the smoke test by directory name).devcontainer-template.json:idrust→rustup, updateddocumentationURL, bumpedversionto1.4.0.devcontainer.json: updated theimagereference and the digest-pinning example toghcr.io/bare-devcontainer/rustup.${devcontainerId}-rust-cargo-*→${devcontainerId}-rustup-cargo-*, matching the convention of prefixing volumes with the template name used by the other templates.src/rustup/README.md,src/rustup/NOTES.md, and the comment intest/rustup/test.sh.Notes
"Rust", following the existinggolang/ "Go" precedent. The images repository also kept the description as "Rust (via rustup) on Debian".ghcr.io/bare-devcontainer/templates/rustup. The existingghcr.io/bare-devcontainer/templates/rustpackage will stop receiving updates; a deprecation notice or migration guidance for existing users is not included here — this mirrors the straight rename done on the images side.Generated by Claude Code