mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-24 18:31:16 +01:00
Introduces yaak-rpc (shared RPC infrastructure) and yaak-proxy-lib (proxy app logic decoupled from any frontend). A single Tauri command dispatches all RPC calls through a typed router, with TypeScript types auto-generated via ts-rs and a generic rpc() function for type-safe calls from the frontend. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
311 B
TOML
14 lines
311 B
TOML
[package]
|
|
name = "yaak-proxy-lib"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
authors = ["Gregory Schier"]
|
|
publish = false
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
ts-rs = { workspace = true }
|
|
yaak-proxy = { workspace = true }
|
|
yaak-rpc = { workspace = true }
|