1 个不稳定版本
0.1.0 | 2020 年 2 月 27 日 |
---|
#27 在 #retrieve
23 每月下载量
在 3 crates 中使用
7KB
79 行
机器 UUID
用于检索机器 UUID 的库
操作系统支持
- Windows - 依赖于 WMIC
- Linux - 依赖于 /etc/machine-id
使用方法
let uuid = machineid::get();
// Based on OS, UUID format will differ
// Windows
assert_eq!("140EF834-2DB3-0F7A-27B4-4CEDFB73167C", uuid);
// Based on OS, UUID format will differ
// Linux
assert_eq!("92cc698195f84d3b85f1cfb0a09e957f", uuid);
将此添加到您的 Cargo.toml 中
[dependencies]
machine_uuid = "0.1.0"
依赖项
~2–3MB
~53K SLoC