[codex] Rust workspace bootstrap 추가 - #3
Merged
Conversation
Owner
Author
|
Independent fresh-session review result
Note: This result is posted as a PR comment because GitHub does not allow an author to submit an official request-changes review on their own pull request. |
JeremyDev87
force-pushed
the
codex/rust-workspace-bootstrap
branch
from
April 17, 2026 17:38
d64ce83 to
b3cb28e
Compare
Owner
Author
|
Independent fresh-session review result
Note: This result is posted as a PR comment because GitHub does not allow an author to submit an official approve review on their own pull request. |
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.
배경
TODO.md의 Rust rewrite 우선순위에 따라P063-A를 먼저 진행했습니다. 이번 PR은 Maximus의 Rust 전환을 위한 첫 bootstrap 단계로, Cargo workspace와 최소 crate 골격을 세우고 CI에서 workspace metadata를 검증할 수 있게 만드는 작업입니다.변경 사항
Cargo.toml과rust-toolchain.toml을 추가해 Rust stable workspace 기준을 만들었습니다.crates/maximus-cli,crates/maximus-core,crates/maximus-checks3개 crate의 최소 manifest와 stub source를 추가했습니다..github/workflows/dev.yml에 Rust metadata 검증 job을 추가했습니다.Cargo.toml,rust-toolchain.toml,crates/**)을 포함했습니다.검증
cargo metadata --format-version 1 --no-depsnpm testnode ./bin/maximus.js audit ./test/fixtures/clean-project리스크 또는 후속 확인 포인트
P063-B에서 JS reference golden artifact를 고정하고,P063-C에서 core pure library 계층을 옮겨갈 예정입니다.