[package]
edition = "2021"
name = "machine-uid"
version = "0.6.0"
authors = ["Hanaasagi <ambiguous404@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Get os native machine id without root permission.
"""
readme = "README.md"
license = "MIT"
repository = "https://github.com/Hanaasagi/machine-uid"
[lib]
name = "machine_uid"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies]
[target.'cfg(target_os = "illumos")'.dependencies.libc]
version = "0.2.177"
[target.'cfg(target_os = "macos")'.dependencies.libc]
version = "0.2.177"
[target."cfg(windows)".dependencies.windows-registry]
version = "0.6.1"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_System_Threading",
"Win32_System_Registry",
]