24 lines
481 B
TOML
24 lines
481 B
TOML
[package]
|
|
name = "license-system-launcher"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = "symbols"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
mac_address = "1.1"
|
|
local-ip-address = "0.5"
|
|
rand = "0.8"
|
|
base64 = "0.22"
|
|
eframe = "0.27"
|
|
rfd = "0.14"
|