Skip to main content

maple_runtime/runtime_core/
mod.rs

1//! MAPLE Resonance Runtime Core
2//!
3//! The foundational runtime for Mapleverse, Finalverse, and iBank.
4//! This runtime implements the Resonance Architecture, treating all entities
5//! as Resonators participating in continuous, meaningful interaction.
6
7pub mod runtime;
8mod registry;
9mod profile_manager;
10pub mod handle;
11mod continuity;
12
13pub use runtime::{MapleRuntime, ResonatorSpec, ResonatorIdentitySpec, CapabilitySpec, MemorySnapshot};
14pub use registry::ResonatorRegistry;
15pub use profile_manager::ProfileManager;
16pub use handle::{
17    ResonatorHandle, CouplingHandle, ScheduleHandle, DecouplingResult,
18    TaskId, RejectionReason, DeferralReason, ScheduleStatus
19};
20pub use continuity::{ContinuityProof, ContinuityRecord};