-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
31 lines (27 loc) · 937 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
27
28
29
30
31
[package]
name = "machineid-rs"
version = "1.2.4"
edition = "2018"
authors = ["Taptiive <aalexius912@gmail.com>"]
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 = {version = "0.29.6", default-features = false }
whoami = "1.2.1"
serde = { version = "1.0.133", features = ["derive"] }
hex = "0.4.3"
uuid = { version = "1.3.0", features = ["v4"] }
hmac = "0.12.1"
md-5 = "0.10.1"
sha-1 = "0.10.0"
sha2 = "0.10.2"
[target.'cfg(windows)'.dependencies]
winreg = "0.11.0"
wmi = "0.12.0"
[target.'cfg(unix)'.dependencies]
serde_json = "1.0.74"