mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-22 01:19:21 +01:00
This commit ensures that the komorebic stop command will force-quit komorebi if the Stop SocketMessage handler fails.
42 lines
938 B
TOML
42 lines
938 B
TOML
[workspace]
|
|
|
|
resolver = "2"
|
|
members = [
|
|
"derive-ahk",
|
|
"komorebi",
|
|
"komorebi-client",
|
|
"komorebi-core",
|
|
"komorebic",
|
|
"komorebic-no-console",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
windows-interface = { version = "0.53" }
|
|
windows-implement = { version = "0.53" }
|
|
dunce = "1"
|
|
dirs = "5"
|
|
color-eyre = "0.6"
|
|
serde_json = { package = "serde_json_lenient", version = "0.1" }
|
|
sysinfo = "0.30"
|
|
|
|
[workspace.dependencies.windows]
|
|
version = "0.54"
|
|
features = [
|
|
"implement",
|
|
"Win32_System_Com",
|
|
"Win32_UI_Shell_Common", # for IObjectArray
|
|
"Win32_Foundation",
|
|
"Win32_Graphics_Dwm",
|
|
"Win32_Graphics_Gdi",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_System_RemoteDesktop",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_Accessibility",
|
|
"Win32_UI_HiDpi",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_Shell",
|
|
"Win32_UI_Shell_Common",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_System_SystemServices"
|
|
]
|