Skip to content

Releases: 0xflux/wdk-mutex

v1.3.2

24 Jan 11:01

Choose a tag to compare

v1.3.2

Fixes issue where calling to_owned and to_owned_box drops the inner
T.

wdk-mutex v1.2.0 🚀

12 Oct 09:28

Choose a tag to compare

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
]