devela 0.26.0

A development layer of coherence.
Documentation
// devela::run
//
#![doc = crate::_DOC_RUN!()] // public, root
#![doc = crate::_DOC_RUN_MODULES!()]
#![doc = crate::_doc!(flat:"run")]
#![doc = crate::_QUO_RUN!()]
//!
//
// safety
#![cfg_attr(feature = "safe_run", forbid(unsafe_code))]
// docs
crate::CONST! { pub(crate) _DOC_RUN_MODULES =
    crate::_doc!(modules: crate; run: cycle, regime, time); // state
}

pub mod cycle; // RunCycle, RunControl, RunPhase
pub mod regime; // RunCap*, RunService
// pub mod state;
pub mod time; // RunPacer, RunStep, Runtime, RuntimeTick

crate::structural_mods! { // _pub_mods, _reexports, _crate_internals
    _pub_mods {
        pub use super::{
            cycle::_all::*,
            regime::_all::*,
            // state::_all::*,
            time::_all::*,
        };
    }
    _reexports {
        pub use devela_base_core::run::{
            RunApp, RunPresent, RunRender,
        };
    }
    _crate_internals {
        pub(crate) use super::_DOC_RUN_MODULES;
    }
}