Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
109 changes: 21 additions & 88 deletions Cargo.lock

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

14 changes: 8 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ lto = true

[workspace.package]
edition = "2021"
rust-version = "1.82.0"
repository = "https://github.com/microsoft/windows-drivers-rs"
readme = "README.md"
license = "MIT OR Apache-2.0"
Expand All @@ -36,11 +37,11 @@ wdk-panic = { path = "crates/wdk-panic", version = "0.3.0" }
wdk-sys = { path = "crates/wdk-sys", version = "0.3.0" }

# External Crates
anyhow = "1.0.95"
bindgen = "0.69.5"
anyhow = "1.0.97"
bindgen = "0.71.0"
camino = "1.1.9"
cargo_metadata = "0.18.1"
cc = "1.2.10"
cargo_metadata = "0.19.2"
cc = "1.2.16"
cfg-if = "1.0.0"
clap = "4.5.9"
clap-cargo = "0.14.1"
Expand All @@ -52,8 +53,9 @@ quote = "1.0.38"
rustversion = "1.0.19"
serde = "1.0"
serde_json = "1.0"
syn = "2.0.87"
thiserror = "1.0.69"
semver = "1.0.26"
syn = "2.0.100"
thiserror = "2.0.12"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
windows = "0.58.0"
Expand Down
5 changes: 5 additions & 0 deletions crates/wdk-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
edition.workspace = true
rust-version.workspace = true
name = "wdk-build"
version = "0.3.0"
description = "A library to configure a Cargo build script for binding generation and downstream linking of the WDK (Windows Driver Kit)"
Expand All @@ -22,6 +23,7 @@ clap = { workspace = true, features = ["derive"] }
clap-cargo.workspace = true
paste.workspace = true
rustversion.workspace = true
semver.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
thiserror.workspace = true
Expand Down Expand Up @@ -72,3 +74,6 @@ missing_crate_level_docs = "warn"
private_intra_doc_links = "warn"
redundant_explicit_links = "warn"
unescaped_backticks = "warn"

[features]
nightly = []
Loading