| Crates.io | os_info |
| lib.rs | os_info |
| version | 3.12.0 |
| created_at | 2017-10-03 15:04:23.233153+00 |
| updated_at | 2025-06-08 07:39:04.107843+00 |
| description | Detect the operating system type and version. |
| homepage | https://github.com/stanislav-tkach/os_info |
| repository | https://github.com/stanislav-tkach/os_info |
| max_upload_size | |
| id | 34293 |
| size | 124,163 |
This project consists of two parts: the library that can be used to detect the operating system type (including version and bitness) and the command line tool that uses the library.
os_info)os_info usageTo use this crate, add os_info as a dependency to your project's Cargo.toml:
[dependencies]
os_info = "3"
This project has serde as an optional dependency, so if you don't need it, then
you can speed up compilation disabling it:
[dependencies]
os_info = { version = "3", default-features = false }
let info = os_info::get();
// Print full information:
println!("OS information: {info}");
// Print information separately:
println!("Type: {}", info.os_type());
println!("Version: {}", info.version());
println!("Bitness: {}", info.bitness());
println!("Architecture: {}", info.architecture());
os_info_cli)A simple wrapper around the os_info library.
This tool can be installed using the following cargo command:
cargo install os_info_cli
os_info_cli usageDespite being named os_info_cli during installation, it is actually named
os_info. You can use the --help flag to see available options:
os_info --help
Right now, the following operating system types can be returned:
If you need support for more OS types, I am looking forward to your Pull Request.
os_info is licensed under the MIT license. See LICENSE for the details.