32 lines
623 B
TOML
32 lines
623 B
TOML
[package]
|
|
name = "parsec-vdd"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
log = "0.4.27"
|
|
env_logger = "0.11"
|
|
thiserror = "1.0"
|
|
wmi = "0.13"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
[dependencies.windows]
|
|
version = "0.61.3"
|
|
features = [
|
|
"Win32_Devices_DeviceAndDriverInstallation",
|
|
"Win32_Foundation",
|
|
"Win32_System_IO",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_Threading",
|
|
"Win32_System_Registry",
|
|
"Win32_Graphics_Gdi",
|
|
"Win32_Security",
|
|
]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
# panic = 'abort'
|
|
# strip = true
|