3 unstable releases
0.1.1 | Apr 12, 2024 |
---|---|
0.1.0 | Nov 15, 2023 |
0.0.0 | Mar 7, 2023 |
#68 in Windows APIs
134,402 downloads per month
Used in 391 crates
(11 directly)
12KB
168 lines
Windows version information
The windows-version crate provides reliable operating system version information without the need for application manifest files.
Start by adding the following to your Cargo.toml file:
[dependencies.windows-version]
version = "0.1"
Make use of Windows version information as needed:
use windows_version::*;
fn main() {
println!("Current version: {:?}", OsVersion::current());
if is_server() {
println!("Running on a Windows Server release.");
}
if OsVersion::current() >= OsVersion::new(10, 0, 0, 12345) {
println!("Can use a feature available on this version or later.")
}
}
lib.rs
:
Learn more about Rust for Windows here: https://github.com/microsoft/windows-rs
Dependencies
~0–4.5MB