ohwid

Crates.ioohwid
lib.rsohwid
version0.1.2
sourcesrc
created_at2024-03-20 13:47:25.814845
updated_at2024-03-20 14:39:36.394718
descriptionGet the hardware ID of the current machine
homepage
repositoryhttps://github.com/Ouki76/ohwid
max_upload_size
id1180497
size3,782
Ouki76 (Ouki76)

documentation

README

ohwid

Allows you to get hardware ID of the current machine.

Supported systems

  • Windows
  • Linux

Install

cargo add ohwid

or

[dependencies]
ohwid = "0.1.2"

Example

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

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

cargo fmt