mlua-swarm 0.1.3

Swarm engine host built on mlua — long-running stateful runtime with Role/Verb gate, CapToken, 3-stage pipeline, and Middleware overlay.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Domain-service layer.
//!
//! Extracts the domain operations that `Application`s share into
//! `Service`s. Sits one layer above the direct engine API and one
//! layer below `Application`.

pub mod linker;
pub mod task_launch;

pub use linker::link;
pub use task_launch::{TaskLaunchError, TaskLaunchInput, TaskLaunchOutput, TaskLaunchService};