Point to v0.1.0 of embedded-usb-pd#115
Merged
jerrysxie merged 1 commit intoMay 20, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the embedded-usb-pd dependency to point at the upstream v0.1.0 release tag, ensuring both the main crate and the RT685S EVK example resolve against the same tagged source.
Changes:
- Pin
embedded-usb-pdgit dependency totag = "v0.1.0"in the root crate and the RT685S EVK example. - Refresh lockfiles to reflect the tagged
embedded-usb-pdsource (and consequent resolution updates in the example).
Reviewed changes
Copilot reviewed 2 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| Cargo.toml | Pins embedded-usb-pd git dependency to the v0.1.0 tag. |
| Cargo.lock | Updates embedded-usb-pd source entry to the tagged git reference. |
| examples/rt685s-evk/Cargo.toml | Pins embedded-usb-pd git dependency to the v0.1.0 tag for the example. |
| examples/rt685s-evk/Cargo.lock | Updates embedded-usb-pd source to the tagged reference and refreshes resolved dependencies. |
RobertZ2011
approved these changes
May 20, 2026
tullom
approved these changes
May 20, 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.
This pull request updates the
embedded-usb-pddependency in both the main project and thert685s-evkexample to use a specific tagged release (v0.1.0) instead of tracking the latest commit on the repository. This change ensures reproducible builds by pinning the dependency to a known version.Dependency version pinning:
embedded-usb-pddependency inCargo.tomlto use thev0.1.0tag instead of the latest commit from theOpenDevicePartnership/embedded-usb-pdrepository.embedded-usb-pddependency inexamples/rt685s-evk/Cargo.tomlto use thev0.1.0tag for consistency and reproducibility.