wdk-build 0.2.0

A library to configure a Cargo build script for binding generation and downstream linking of the WDK (Windows Driver Kit)
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright (c) Microsoft Corporation
// License: MIT OR Apache-2.0

#[rustversion::nightly]
fn main() {
    println!("cargo:rustc-cfg=nightly_toolchain");
}

#[rustversion::not(nightly)]
fn main() {}