1
0
Files
wfassoc/wfassoc/Cargo.toml
yyc12345 81fd224236 feat(windows): implement icon and string resource loading
- Add IconRc struct for loading icons from executable or .ico files
- Implement LoadIconRcError for icon loading error handling
- Add StrRc struct for loading string resources from files
- Implement LoadStrRcError for string loading error handling
- Remove old Icon struct and related error types
- Update tests to use new resource loading implementations
- Add Windows Resource section with proper documentation
- Include Win32_System_LibraryLoader feature in Cargo.toml
2025-10-27 14:09:51 +08:00

26 lines
651 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_LibraryLoader",
"Win32_System_Registry",
"Win32_System_SystemServices",
] }
winreg = { version = "0.55.0", features = ["transactions"] }
widestring = "1.2.1"
indexmap = "2.11.4"
itertools = "0.14.0"
regex = "1.11.3"
uuid = "1.18.1"