Bump device-driver to 1.0.9#56
Merged
felipebalbi merged 1 commit intoMay 7, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Bumps the device-driver Rust dependency to pick up the latest patch releases in the 1.0.x line.
Changes:
- Updated
device-driverdependency version from1.0.3to1.0.9.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Updates the `device-driver` dependency from 1.0.3 to 1.0.9 and refreshes Cargo.lock. No `supply-chain/` config in this repo, so no cargo-vet certification was needed. Assisted-by: Claude:claude-opus-4.7
74b8633 to
9427ee7
Compare
tullom
approved these changes
May 1, 2026
jerrysxie
approved these changes
May 7, 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.
Bumps
device-driverfrom 1.0.3 to 1.0.9.Cargo.tomldependency declaration.Cargo.lockviacargo build.src/versions/gen_{r1,r3,r4,r5}.rswithdevice-driver-cli1.0.9 and re-formatted with nightly rustfmt to match the committed style..github/workflows/device-driver.yml: thedevice-driver-pregen-checkjob previously diffed rawdevice-driver-clioutput against the committed files, but the committed files are formatted with nightly rustfmt (seerustfmt.tomlunstable options used by the nightly fmt CI job). That made the pregen check and the nightly fmt check structurally conflicting — bumping the CLI's formatting would always break one or the other. The workflow now installs nightly withrustfmtand runsrustup run nightly rustfmt --edition 2024 ci_gen_<rev>.rsbetween the generate and diff steps, so the comparison happens on equivalently-formatted code.cargo clippy --features <rev> -- -F clippy::suspicious -F clippy::correctness -F clippy::perf -F clippy::stylefor r1/r3/r4/r5,cargo build,cargo test --features r1, and the new CI flow simulated for r1 (regen → nightly rustfmt → byte-identical diff).