arkhe_kernel/runtime/mod.rs
1//! L0 runtime stratum.
2//!
3//! Kernel-level event types, transactional `StepStage` (10 buckets),
4//! the Kernel orchestrator, dispatcher, action registry, and the
5//! panic-resilient observer chain. Depends on `abi` and
6//! `state`.
7
8pub mod apply;
9pub mod dispatch;
10pub mod event;
11pub mod kernel;
12pub mod observer;
13pub mod registry;
14pub mod stage;
15pub mod view;
16
17pub use kernel::{Kernel, Stats, StepReport};
18pub use observer::KernelObserver;
19pub use view::InstanceView;