forked from Taptiive/machineid-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (23 loc) · 821 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "machineid-rs"
version = "1.2.2"
edition = "2018"
authors = ["Taptiive <[email protected]>"]
description = "Get an encrypted unique MachineID/HWID/UUID. Inspired by .Net DeviceId."
readme = "README.md"
repository = "https://github.com/Taptiive/machineid-rs"
license = "MIT OR Apache-2.0"
keywords = ["hwid", "machineid", "hardware-id", "machineuid", "uuid"]
categories = ["authentication", "config", "accessibility"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sysinfo = "0.28.2"
whoami = "1.2.1"
serde = { version = "1.0.133", features = ["derive"] }
serde_json = "1.0.74"
rust-crypto = "0.2.36"
hex = "0.4.3"
uuid = { version = "1.3.0", features = ["v4"] }
[target.'cfg(windows)'.dependencies]
winreg = "0.11.0"
wmi = "0.12.0"