Releases: 0xflux/wdk-mutex
Releases · 0xflux/wdk-mutex
v1.3.2
wdk-mutex v1.2.0 🚀
V1.2.0
This release allows both WDM and KMDF drivers to use the wdk-mutex crate. In addition to specifying the framework in Cargo.toml via: [package.metadata.wdk.driver-model], you now also need to match this in .cargo/config.toml as follows:
[build]
rustflags = [
"-C", "target-feature=+crt-static",
"--cfg", 'driver_model__driver_type="KMDF"' # This line is required, and should either be KMDF or WDM depending on your framework
]