Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ license = "MIT OR Apache-2.0"

[workspace.dependencies]
# Workspace Crates
wdk = { path = "crates/wdk", version = "0.4.0" }
wdk-alloc = { path = "crates/wdk-alloc", version = "0.4.0" }
wdk-build = { path = "crates/wdk-build", version = "0.5.0" }
wdk = { path = "crates/wdk", version = "0.4.1" }
wdk-alloc = { path = "crates/wdk-alloc", version = "0.4.1" }
wdk-build = { path = "crates/wdk-build", version = "0.5.1" }
# Exact version (=) kept in lockstep with wdk-sys. These crates must be versioned together because:
# (1) wdk-macros is a proc-macro crate consumed only through wdk-sys re-exports, and
# (2) the two crates form a tightly coupled API surface.
# Enforced by .github/workflows/version-checks.yaml (check-version-consistency job, lockstep step).
wdk-macros = { path = "crates/wdk-macros", version = "=0.5.0" }
wdk-panic = { path = "crates/wdk-panic", version = "0.4.0" }
wdk-sys = { path = "crates/wdk-sys", version = "0.5.0" }
wdk-macros = { path = "crates/wdk-macros", version = "=0.5.1" }
wdk-panic = { path = "crates/wdk-panic", version = "0.4.1" }
wdk-sys = { path = "crates/wdk-sys", version = "0.5.1" }

# External Crates
anyhow = "1.0.97"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ The crates in this repository are available from [`crates.io`](https://crates.io
#!@rust
//! ```cargo
//! [dependencies]
//! wdk-build = "0.5.0"
//! wdk-build = "0.5.1"
//! ```
#![allow(unused_doc_comments)]

Expand Down
7 changes: 7 additions & 0 deletions crates/cargo-wdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [0.1.1](https://github.com/microsoft/windows-drivers-rs/compare/cargo-wdk-v0.1.0...cargo-wdk-v0.1.1) - 2025-11-13

### Other

- update cargo-wdk templates to use latest crate versions ([#573](https://github.com/microsoft/windows-drivers-rs/pull/573))
- update cargo-wdk `Cargo.toml` description to align better with `README.md` ([#569](https://github.com/microsoft/windows-drivers-rs/pull/569))

## [0.1.0](https://github.com/microsoft/windows-drivers-rs/compare/cargo-wdk-v0.0.0...cargo-wdk-v0.1.0) - 2025-11-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/cargo-wdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition.workspace = true
name = "cargo-wdk"
version = "0.1.0"
version = "0.1.1"
authors = ["Microsoft"]
description = "A Cargo extension for developing Windows drivers in Rust"
repository.workspace = true
Expand Down
10 changes: 5 additions & 5 deletions crates/cargo-wdk/templates/kmdf/Cargo.toml.tmp
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ target-kmdf-version-minor = 33
crate-type = ["cdylib"]

[build-dependencies]
wdk-build = "0.5.0"
wdk-build = "0.5.1"

[dependencies]
wdk = "0.4.0"
wdk-alloc = "0.4.0"
wdk-panic = "0.4.0"
wdk-sys = "0.5.0"
wdk = "0.4.1"
wdk-alloc = "0.4.1"
wdk-panic = "0.4.1"
wdk-sys = "0.5.1"

[features]
default = []
Expand Down
6 changes: 3 additions & 3 deletions crates/cargo-wdk/templates/umdf/Cargo.toml.tmp
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ target-umdf-version-minor = 33
crate-type = ["cdylib"]

[build-dependencies]
wdk-build = "0.5.0"
wdk-build = "0.5.1"

[dependencies]
wdk = "0.4.0"
wdk-sys = "0.5.0"
wdk = "0.4.1"
wdk-sys = "0.5.1"

[features]
default = []
Expand Down
10 changes: 5 additions & 5 deletions crates/cargo-wdk/templates/wdm/Cargo.toml.tmp
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ driver-type = "WDM"
crate-type = ["cdylib"]

[build-dependencies]
wdk-build = "0.5.0"
wdk-build = "0.5.1"

[dependencies]
wdk = "0.4.0"
wdk-alloc = "0.4.0"
wdk-panic = "0.4.0"
wdk-sys = "0.5.0"
wdk = "0.4.1"
wdk-alloc = "0.4.1"
wdk-panic = "0.4.1"
wdk-sys = "0.5.1"

[features]
default = []
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions crates/cargo-wdk/tests/kmdf-driver/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions crates/cargo-wdk/tests/mixed-package-kmdf-workspace/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions crates/cargo-wdk/tests/new_command_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,19 @@ use mockall::PredicateBooleanExt;
use test_utils::{set_crt_static_flag, with_file_lock};

#[test]
#[ignore = "disabled by default since this can rely on unreleased crate versions in the template"]
fn kmdf_driver_is_created_successfully() {
project_is_created("kmdf");
}

#[test]
#[ignore = "disabled by default since this can rely on unreleased crate versions in the template"]
fn umdf_driver_is_created_successfully() {
project_is_created("umdf");
}

#[test]
#[ignore = "disabled by default since this can rely on unreleased crate versions in the template"]
fn wdm_driver_is_created_successfully() {
project_is_created("wdm");
}
Expand Down
8 changes: 4 additions & 4 deletions crates/cargo-wdk/tests/umdf-driver/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions crates/cargo-wdk/tests/wdm-driver/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading