ohwid 0.1.0

Get the hardware ID of the current machine
1
2
3
4
5
6
7
8
9
10
11
12
# ohwid


# Example

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

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