plushie 0.4.1

Native GUI renderer powered by Iced
Documentation
//! # plushie
//!
//! Native GUI renderer binary. Three execution modes:
//!
//! - **Windowed (default):** `plushie` -- Full iced rendering with real
//!   windows and GPU. Production mode. Reports `"mode": "windowed"`.
//! - **Headless:** `plushie --headless` -- No display server. Real
//!   rendering via tiny-skia with persistent widget state. Accurate
//!   screenshots after interactions. For CI with visual verification.
//! - **Mock:** `plushie --mock` -- No rendering. Core + wire protocol
//!   only. Stub screenshots. For fast protocol-level testing from
//!   any language.
//!
//! All modes handle scripting messages (Query, Interact, TreeHash,
//! Screenshot, Reset) for programmatic inspection and interaction.
//!
//! Wire codec auto-detection: the first byte of stdin determines the format
//! (`{` = JSON, anything else = MessagePack). Override with `--json` or
//! `--msgpack`.

mod effects;
mod headless;
mod output;
mod renderer;
pub(crate) mod transport;

/// Entry point for the plushie renderer.
///
/// Extension packages create a `PlushieAppBuilder`, register their extensions,
/// and pass it here. The default `main.rs` simply passes an empty builder.
pub fn run(builder: plushie_core::app::PlushieAppBuilder) -> iced::Result {
    renderer::run(builder)
}