enabling local profile dependency and code seperation#2680
enabling local profile dependency and code seperation#2680volt (volt317) wants to merge 3 commits into
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: bbbd55a121
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "Codex (@codex) review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "Codex (@codex) address that feedback".
| gix-date = { version = "^0.15.5", path = "../gix-date" } | ||
| gix-ref = { version = "^0.65.0", path = "../gix-ref" } |
There was a problem hiding this comment.
Update the lockfile with the new shallow dependencies
Adding gix-date and gix-ref to gix-shallow changes that package's dependency graph, but the committed Cargo.lock entry for gix-shallow still lists only the old dependencies. In environments that build this workspace with --locked (common for CI/release verification), Cargo will reject the stale lockfile before compiling, so the lockfile needs to be regenerated along with this manifest change.
Useful? React with 👍 / 👎.
…types.rs), match arm switched to the braced single-line form rustfmt prefers in fetch/lib.rs
partially addresses #2672