//! Runtime: frame scheduler, event system, subsystem manager; ties every other crate into the main loop.
/// Owns subsystem instances and drives the frame loop.
;
/// Builds and runs the per-frame job graph across every subsystem.
;
/// Workspace-wide event bus.
;
/// Registry of active subsystems for the current `Runtime`. The only place
/// in the workspace allowed to know about every `*-core` at once — see
/// docs/dependency-rules.md rule 7.
;