Implement CmdLexer, CmdArg and CmdArgs for proper Windows command line argument parsing and quoting. Add itertools dependency for string joining functionality.
25 lines
617 B
TOML
25 lines
617 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"
|
|
itertools = "0.14.0"
|
|
regex = "1.11.3"
|
|
uuid = "1.18.1"
|