tauri-runtime-blitz 0.4.0

Tauri runtime backed by Blitz and Boa
docs.rs failed to build tauri-runtime-blitz-0.4.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Tauri runtime backed by Blitz and Boa.

The first implementation target is Tauri 2.11.x. Its runtime traits are not semver-stable, so versions stay exact and upgrades are deliberate.

What is not here

The Blitz control surface. The vocabulary, the core that reads and drives a document, the socket transport and the in-process transport are all blitz-control-protocol, and this crate re-exports none of them.

Nothing about inspecting a document needs a window, and while it lived here depending on it meant compiling Tauri: on Linux that reaches GTK, so a headless host pulled in system libraries to build a binary that opens nothing. A runtime bridges Tauri to Blitz and owns a native window. It does not proxy an inspection service, because a runtime that forwards one has not removed the dependency edge, only renamed it.

An embedder that names a control type depends on blitz-control-protocol directly, and registers what Relaunch means for its process with blitz_control_protocol::lifecycle. What this crate keeps is set_agent_control_enabled and apply_runtime_debug_options, which are about this runtime's listener rather than about the protocol, and which name no protocol type. Nothing public here does.