1
0
Files
wfassoc/wfassoc/Cargo.toml
yyc12345 84a29c862b feat(windows): add ExpandString for environment variable expansion
Implement ExpandString struct to handle Windows environment variable expansion
with proper error handling. Also reorganize windows-sys dependencies and improve
icon loading error messages.
2025-10-20 14:41:50 +08:00

24 lines
596 B
TOML

[package]
name = "wfassoc"
version = "0.1.0"
authors = ["yyc12345"]
edition = "2024"
description = "The library reading or manipulating Windows file assocation."
license = "SPDX:MIT"
[dependencies]
thiserror = { workspace = true }
windows-sys = { version = "0.60.2", features = [
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
"Win32_Security",
"Win32_System_Environment",
"Win32_System_Registry",
"Win32_System_SystemServices",
] }
winreg = { version = "0.55.0", features = ["transactions"] }
widestring = "1.2.1"
indexmap = "2.11.4"
regex = "1.11.3"
uuid = "1.18.1"