actionqueue_runtime/lib.rs
1#![forbid(unsafe_code)]
2//! ActionQueue runtime: dispatch loop, configuration, and embedded API.
3//!
4//! This crate composes the storage, engine, and executor primitives into a
5//! cohesive runtime that drives the full task lifecycle from submission through
6//! scheduling, leasing, execution, and completion.
7
8pub mod config;
9pub mod dispatch;
10pub mod engine;
11pub mod worker;