ohwid 0.1.2

Get the hardware ID of the current machine
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented1 out of 1 items with examples
  • Size
  • Source code size: 5.97 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 950.22 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 15s Average build duration of successful builds.
  • all releases: 15s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Ouki76/ohwid
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Ouki76

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),
}