1 stable release
1.0.0 | May 22, 2024 |
---|
#832 in Filesystem
6KB
77 lines
mac_conditions
Supported platforms: Any version of Windows that supports WMIC.
Example
use systemd_info;
fn main() {
let serial_number = systemd_info::get_bios_serial_number().unwrap();
let cpu_name = systemd_info::cpu_name().expect("Failed to get CPU name");
let ramgb = systemd_info::ram_info().expect("Failed to get RAM name");
let disk_info = systemd_info::get_disk_info().expect("Failed to get DISK name");
let gpu_name = systemd_info::get_gpu_info().expect("Failed to get GPU name");
println!("Serial Number: {}", serial_number);
println!("CPU Name: {}", cpu_name);
println!("RAM: {} GB", ramgb);
println!("Disk: {}", disk_info);
println!("GPU: {}", gpu_name);
}
License
mac_conditions
is licensed under both MIT and Apache 2.0
Dependencies
~2.1–3MB
~53K SLoC