teksilo 0.12.1

A pure-Rust GUI framework for serious desktop applications — retained widget tree, SwiftUI-style layout, AccessKit accessibility, wgpu rendering.
Documentation
// SPDX-License-Identifier: MPL-2.0
// SPDX-FileCopyrightText: 2026 FernTech

//! Automation bridge install hook.
//!
//! Re-exports [`TeksiloAppBuilderAutomationExt`](teksilo_app::automation_bridge::TeksiloAppBuilderAutomationExt) from `teksilo-app` so that
//! `use teksilo::prelude::*` makes
//! [`install_automation_bridge_in_debug()`](teksilo_app::automation_bridge::TeksiloAppBuilderAutomationExt::install_automation_bridge_in_debug)
//! callable on a [`TeksiloAppBuilder`](teksilo_app::TeksiloAppBuilder).
//! Mirrors `toast_install` / `webview_install`.
//!
//! The bridge lets `teksilo-automation-mcp --attach` (or `--attach-pid <pid>`,
//! or the explicit `--connect <endpoint> --token <uuid>`) drive a *live*
//! running app. The app publishes an endpoint descriptor naming its address
//! and handshake token, so a client discovers the bridge rather than scraping
//! it out of the app's stderr — and the address is whatever this platform's
//! private transport is (a Unix-domain socket, a named pipe on Windows), not a
//! path the caller should assume the shape of. It is debug-only by
//! construction: the install method is a no-op in a release build (see the
//! `teksilo-app` crate). The GUI-free DTO toolkit is available as
//! `teksilo::automation`.

pub use teksilo_app::automation_bridge::TeksiloAppBuilderAutomationExt;