//! Worker subsystem: claim jobs from the queue, execute them, transition
//! them to their terminal state, and recover after crashes.
//!
//! Submodules:
//! - [`executor`] — the `Executor` trait and the built-in deterministic
//! `SimulatedExecutor`.
//! - [`runtime`] — `WorkerRuntime`, which spawns a pool of worker tasks
//! and owns the graceful-shutdown sequence.
//! - [`recovery`] — the startup sweep that re-queues rows left in
//! `running` by previously-crashed workers.
pub use ;
pub use recover_stale_at_startup;
pub use WorkerRuntime;