-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
50 lines (45 loc) · 997 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
47
48
49
50
[package]
name = "window-switcher"
version = "1.12.0"
edition = "2021"
[dependencies]
anyhow = "1"
indexmap = "2.2.3"
log = "0.4.20"
once_cell = "1.18.0"
parking_lot = "0.12.3"
rust-ini = "0.21.0"
simple-logging = "2.0.2"
xml = "0.8.10"
[dependencies.windows]
version = "0.58.0"
features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_Shell",
"Win32_UI_Controls",
"Win32_UI_Accessibility",
"Win32_Graphics_Dwm",
"Win32_Graphics_Gdi",
"Win32_Graphics_GdiPlus",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_System_Console",
"Win32_System_LibraryLoader",
"Win32_System_Registry",
"Win32_System_SystemInformation",
"Win32_System_Threading",
"Win32_Storage_FileSystem",
"Wdk_System_SystemServices",
]
[build-dependencies]
embed-resource = "3.0.1"
[profile.release]
lto = true
strip = true
opt-level = "z"
[workspace]
members = [
"tools/inspect-windows"
]