ohwid 0.1.0

Get the hardware ID of the current machine
ohwid-0.1.0 has been yanked.
Visit the last successful build: ohwid-0.1.2

ohwid

Example

use ohwid::get_hwid;
let hwid = get_hwid();

match hwid {
  Ok(hwid) => println!("HWID: {}", hwid),
  Err(e) => println!("Failed to get HWID: {}", e),
}