chore: slim down scaffolding (Docker/justfile/stale roadmaps)#7
Merged
Conversation
sedx is a CLI utility distributed via crates.io + cargo-dist prebuilts — the shipped Dockerfile was pinned to Rust 1.75 (broken, we need 1.87) and had no real users. Consumers who want a container can trivially write their own 'FROM rust … cargo install sedx'. Also removed: - justfile (255 lines): Makefile already covers every recipe except two trivial aliases (pre-commit, publish). check-ci + pre-push hook are the canonical devex path; one build system is enough. - scripts/package.sh: obsoleted by cargo-dist, which handles prebuilts in CI. - docs/ROADMAP.md + docs/PRODUCTION_ROADMAP.md: stale — they describe 'v0.2.6-alpha → v1.0.0' work, and we're already at 1.0 (release-plz is proposing v1.1.0). CHANGELOG is the authoritative history now. - RELEASE_NOTES.md link pointed at the deleted ROADMAP; swung to CHANGELOG.
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
Cleanup pass to match what sedx actually is (a Rust CLI). Five drops:
Dockerfile+.dockerignore— used Rust 1.75 (broken; sedx needs 1.87). Consumers can trivially writeFROM rust … cargo install sedxin their own Dockerfile. No real users of the shipped image.justfile— 251 lines of overlap with the 275-line Makefile. Makefile already covers every recipe except two trivial aliases. Pre-push hook runsmake check-ci; one build system is plenty.scripts/package.sh— cargo-dist now handles prebuilts in CI.docs/ROADMAP.md+docs/PRODUCTION_ROADMAP.md— describe "v0.2.6-alpha → v1.0.0" work. We're past 1.0 and release-plz is proposing v1.1.0. CHANGELOG is authoritative.docs/RELEASE_NOTES.md— rewired the link that pointed at the deleted ROADMAP to point at CHANGELOG instead.Test plan
cargo test,cargo clippy --all-targets -- -D warnings,cargo fmt --checkgreenmake check-cipasses locally (Makefile survives — it's the sole build runner now)Follow-ups (not this PR)
~/.sedx/backups/