29 lines
620 B
TOML
29 lines
620 B
TOML
[package]
|
|
name = "auto_mute_tool"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
widestring = "1.0.0"
|
|
once_cell = "1.12.0"
|
|
|
|
[dependencies.windows]
|
|
version = "0.37.0"
|
|
features = [
|
|
"alloc",
|
|
"implement",
|
|
"Win32_Media_Audio",
|
|
"Win32_UI_Shell_PropertiesSystem",
|
|
"Data_Xml_Dom",
|
|
"Win32_UI",
|
|
"Win32_UI_Accessibility",
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_System_Com",
|
|
"Win32_System_Com_StructuredStorage"
|
|
|
|
] |