wdk-build 0.3.0

A library to configure a Cargo build script for binding generation and downstream linking of the WDK (Windows Driver Kit)
[build-dependencies.rustversion]
version = "1.0.17"

[dependencies.anyhow]
version = "1.0.86"

[dependencies.bindgen]
version = "0.69.4"

[dependencies.camino]
version = "1.1.9"

[dependencies.cargo_metadata]
version = "0.18.1"

[dependencies.cfg-if]
version = "1.0.0"

[dependencies.clap]
features = ["derive"]
version = "4.5.9"

[dependencies.clap-cargo]
version = "0.14.1"

[dependencies.lazy_static]
version = "1.5.0"

[dependencies.paste]
version = "1.0.15"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0.62"

[dependencies.tracing]
version = "0.1.40"

[dependencies.windows]
features = ["Win32_Foundation", "Win32_System_Registry"]
version = "0.58.0"

[dev-dependencies.windows]
features = ["Win32_UI_Shell"]
version = "0.58.0"

[lib]
name = "wdk_build"
path = "src/lib.rs"

[lints.clippy]
all = "deny"
cargo = "warn"
multiple_unsafe_ops_per_block = "deny"
nursery = "warn"
pedantic = "warn"
undocumented_unsafe_blocks = "deny"
unnecessary_safety_doc = "deny"

[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "forbid"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(wdk_build_unstable)", "cfg(skip_umdf_static_crt_check)"]
level = "warn"
priority = 0

[lints.rustdoc]
bare_urls = "warn"
broken_intra_doc_links = "warn"
invalid_codeblock_attributes = "warn"
invalid_html_tags = "warn"
invalid_rust_codeblocks = "warn"
missing_crate_level_docs = "warn"
private_intra_doc_links = "warn"
redundant_explicit_links = "warn"
unescaped_backticks = "warn"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["development-tools::build-utils", "development-tools::ffi"]
description = "A library to configure a Cargo build script for binding generation and downstream linking of the WDK (Windows Driver Kit)"
edition = "2021"
keywords = ["wdk", "windows", "build-dependencies"]
license = "MIT OR Apache-2.0"
name = "wdk-build"
readme = "README.md"
repository = "https://github.com/microsoft/windows-drivers-rs"
version = "0.3.0"