Crates.io | ohwid |
lib.rs | ohwid |
version | 0.1.2 |
source | src |
created_at | 2024-03-20 13:47:25.814845 |
updated_at | 2024-03-20 14:39:36.394718 |
description | Get the hardware ID of the current machine |
homepage | |
repository | https://github.com/Ouki76/ohwid |
max_upload_size | |
id | 1180497 |
size | 3,782 |
Allows you to get hardware ID of the current machine.
cargo add ohwid
or
[dependencies]
ohwid = "0.1.2"
use ohwid::get_hwid;
let hwid = get_hwid();
match hwid {
Ok(hwid) => println!("HWID: {}", hwid),
Err(e) => println!("Failed to get HWID: {}", e),
}