-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
46 lines (41 loc) · 960 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "microphone-mute-indicator"
version = "0.3.0"
edition = "2021"
build = "build.rs"
[dependencies]
strum = "0.26.2"
strum_macros = "0.26.2"
windows-core = { version = "0.56.0" }
[dependencies.argh]
version = "0.1.12"
default-features = false
[dependencies.windows]
version = "0.56.0"
features = [
"implement",
"Win32_Devices_FunctionDiscovery",
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_Media_Audio_Endpoints",
"Win32_Media_Audio",
"Win32_Security",
"Win32_System_Com_StructuredStorage",
"Win32_System_Com",
"Win32_System_Console",
"Win32_System_LibraryLoader",
"Win32_System_Registry",
"Win32_System_SystemInformation",
"Win32_System_Threading",
"Win32_UI_Shell_PropertiesSystem",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
]
[build-dependencies]
winres = "0.1.12"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true