mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-27 11:51:20 +01:00
This commit introduces the komorebi-client library crate for other Rust applications to interact with a running instance of komorebi over Unix Domain Sockets. Currently the crate re-exports everything one might find in the komorebi::State struct and everything that is publicly exposed in komorebi-core. Public types and methods are still lacking documentation, and this crate should not be published on crates.io until this is no longer the case.
40 lines
856 B
TOML
40 lines
856 B
TOML
[workspace]
|
|
|
|
resolver = "2"
|
|
members = [
|
|
"derive-ahk",
|
|
"komorebi",
|
|
"komorebi-client",
|
|
"komorebi-core",
|
|
"komorebic",
|
|
"komorebic-no-console",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
windows-interface = { version = "0.52" }
|
|
windows-implement = { version = "0.52" }
|
|
dunce = "1"
|
|
dirs = "5"
|
|
color-eyre = "0.6"
|
|
|
|
[workspace.dependencies.windows]
|
|
version = "0.52"
|
|
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"
|
|
]
|