mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-04-22 16:48:33 +02: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.
13 lines
308 B
TOML
13 lines
308 B
TOML
[package]
|
|
name = "komorebi-client"
|
|
version = "0.1.22-dev.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
komorebi = { path = "../komorebi" }
|
|
komorebi-core = { path = "../komorebi-core" }
|
|
uds_windows = "1"
|
|
serde_json = "1"
|