♻️ chore: remove mq-check and mq-docs crates#1271
Merged
Conversation
- Remove mq-check and mq-docs from workspace and dependencies - Delete crates/mq-check and crates/mq-docs directories - Update CI workflow, Cargo.toml, Cargo.lock, and related files - Clean up built-in and section module comments Removes deprecated CLI tools and cleans up workspace structure.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes two deprecated CLI tool crates (mq-check and mq-docs) from the mq workspace. These tools are being converted to external standalone repositories. The PR also adds documentation comments to two functions in .mq query files and includes a Windows-specific CI configuration change.
Changes:
- Removes
mq-checkandmq-docsfrom workspace members in Cargo.toml - Deletes all source files, documentation, and configuration for both crates
- Updates Cargo.lock to remove the deleted crate entries
- Adds documentation comments to
each()in builtin.mq andsections()in section.mq - Adds Windows RUSTFLAGS configuration to CI workflow
Reviewed changes
Copilot reviewed 12 out of 13 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| Cargo.toml | Removes mq-check and mq-docs from workspace members list |
| Cargo.lock | Removes lock file entries for deleted crates |
| crates/mq-check/* | Complete deletion of mq-check crate (main.rs, lib.rs, README.md, Cargo.toml) |
| crates/mq-docs/* | Complete deletion of mq-docs crate (main.rs, lib.rs, README.md, Cargo.toml) |
| crates/mq-lang/builtin.mq | Adds documentation comment for each() function |
| crates/mq-lang/modules/section.mq | Adds documentation comment for sections() function |
| .github/workflows/ci.yml | Adds Windows stack size configuration before running tests |
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.
Removes deprecated CLI tools and cleans up workspace structure.