chore: migrate embedded-services pins from v0.2.0 to main#23
Open
dymk wants to merge 1 commit into
Open
Conversation
Update all platform Cargo.toml files to reference the main branch of embedded-services instead of v0.2.0. The APIs are identical since PR #852 was merged to both branches, so no code changes are needed. This ensures consistent trait resolution across all platforms and prepares for upcoming features that target the main branch.
There was a problem hiding this comment.
Pull request overview
This PR updates all platform crates to pull embedded-services (and related service crates) from the main branch instead of v0.2.0, and regenerates the per-platform lockfiles and cargo-vet supply-chain metadata accordingly.
Changes:
- Switch
embedded-services/service git deps frombranch = "v0.2.0"tobranch = "main"across platform crates. - Regenerate all
Cargo.lockfiles to reflect the updated git sources and updated transitive versions. - Regenerate
supply-chain/(cargo-vet)config.tomlandimports.lockfiles per platform.
Reviewed changes
Copilot reviewed 9 out of 18 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| platform/platform-common/Cargo.toml | Moves shared service dependencies to embedded-services main. |
| platform/platform-common/Cargo.lock | Regenerated to match updated git deps and transitive updates. |
| platform/dev-qemu/supply-chain/imports.lock | Regenerated cargo-vet imported audits lock. |
| platform/dev-qemu/supply-chain/config.toml | Regenerated cargo-vet configuration/exemptions. |
| platform/dev-qemu/Cargo.toml | Moves uart-service git dependency to main. |
| platform/dev-qemu/Cargo.lock | Regenerated to match updated git deps and transitive updates. |
| platform/dev-npcx/supply-chain/imports.lock | Regenerated cargo-vet imported audits lock. |
| platform/dev-npcx/supply-chain/config.toml | Regenerated cargo-vet configuration/exemptions. |
| platform/dev-npcx/Cargo.toml | Moves uart-service git dependency to main. |
| platform/dev-npcx/Cargo.lock | Regenerated to match updated git deps and transitive updates. |
| platform/dev-mcxa/supply-chain/imports.lock | Regenerated cargo-vet imported audits lock. |
| platform/dev-mcxa/supply-chain/config.toml | Regenerated cargo-vet configuration/exemptions. |
| platform/dev-mcxa/Cargo.toml | Moves uart-service git dependency to main. |
| platform/dev-mcxa/Cargo.lock | Regenerated to match updated git deps and transitive updates. |
| platform/dev-imxrt/supply-chain/imports.lock | Regenerated cargo-vet imported audits lock. |
| platform/dev-imxrt/supply-chain/config.toml | Regenerated cargo-vet configuration/exemptions. |
| platform/dev-imxrt/Cargo.toml | Moves uart-service git dependency to main. |
| platform/dev-imxrt/Cargo.lock | Regenerated to match updated git deps and transitive updates. |
jerrysxie
approved these changes
May 23, 2026
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
Migrate all platform Cargo.toml files to reference the
mainbranch of embedded-services instead ofv0.2.0. The APIs are identical since embedded-services PR #852 was merged to both branches, so no code changes are needed.This ensures consistent trait resolution across all platforms and prepares for upcoming features that target the
mainbranch.Changes
platform-common/Cargo.toml: 11 branch refs updateddev-imxrt/Cargo.toml: 1 branch ref updateddev-mcxa/Cargo.toml: 1 branch ref updateddev-npcx/Cargo.toml: 1 branch ref updatedCargo.lockfiles regeneratedsupply-chain/(cargo-vet) files regenerated