chore: update to nov 2025 windows-drivers-rs release - #46
Merged
Conversation
Melvin Wang (wmmc88)
force-pushed
the
nov-release
branch
from
November 19, 2025 22:36
cff0c10 to
f019531
Compare
…d version is ingested
…wdk-build version is ingested" This reverts commit f054f1f.
Melvin Wang (wmmc88)
force-pushed
the
nov-release
branch
from
November 20, 2025 00:06
f019531 to
443f478
Compare
Leon Durrenberger (leon-xd)
previously approved these changes
Nov 20, 2025
Melvin Wang (wmmc88)
marked this pull request as ready for review
November 20, 2025 20:04
Melvin Wang (wmmc88)
enabled auto-merge (squash)
November 20, 2025 21:10
Co-authored-by: Gurinder Singh <frederick.the.fool@gmail.com> Signed-off-by: Melvin Wang <melvin.mc.wang@gmail.com>
Melvin Wang (wmmc88)
requested review from
Gurinder Singh (gurry) and
Leon Durrenberger (leon-xd)
December 2, 2025 19:21
Melvin Wang (wmmc88)
requested a review
from Krishna Kumar Thokala (krishnakumar4a4)
December 3, 2025 04:14
Krishna Kumar Thokala (krishnakumar4a4)
approved these changes
Dec 3, 2025
Gurinder Singh (gurry)
approved these changes
Dec 3, 2025
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 dependencies and improves compatibility with the latest versions of key libraries and tools for Windows driver development. The most important changes include bumping
wdk-related crate versions, switching to the latest released version ofcargo-wdkin CI, and updating code to use safer pointer initialization for Win32 API calls.Dependency updates:
wdk-related workspace dependencies inCargo.tomlto newer versionswindows-sysdependency from0.52.0to0.59.0ingeneral/echo/kmdf/exe/Cargo.tomlfor improved API coverage and compatibility.CI/build improvements:
cargo-wdkinstead of pinning to a specific commit, ensuring up-to-date tooling for building and packaging drivers.Win32 API usage and code safety:
general/echo/kmdf/exe/src/main.rsto usestd::ptr::null_mut()instead of0for pointer arguments, improving correctness and clarity in Win32 API interactions. This affects device handle creation, completion port creation, and overlapped I/O event initialization. [1] [2] [3] [4]related to microsoft/windows-drivers-rs#562