Update README with current implementations and prerequisites#128
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 312d92bead
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| Run a targeted unit test by name when validating a narrow change: | ||
|
|
||
| ```sh | ||
| cargo test <test_name> |
There was a problem hiding this comment.
Restrict the unit-test command to the library target
I checked cargo test --help; it describes cargo test as executing all unit and integration tests, and lists --lib as testing only the package library. In this repo, integration tests are explicitly gated unless requested, so documenting cargo test <test_name> under “targeted unit test” can still compile and run matching tests from tests/; use cargo test --lib <test_name> or a specific --test command only when integration tests are approved.
Useful? React with 👍 / 👎.
Summary
mxxand the major implementation areas in the repo.Testing