The windows-default crate provides the default metadata
for Windows APIs as embedded byte slices. Build tools can use WINRT and WIN32 without
locating or distributing separate .winmd files.
Start by adding the following to your Cargo.toml file:
[dependencies.windows-default]
version = "0.100"use windows_default::{WIN32, WINRT};
assert!(!WINRT.is_empty());
assert!(!WIN32.is_empty());