devela 0.27.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
}

mod iface; // RunApp

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

crate::structural_mods! { // _mods, _pub_mods, _crate_internals
    _mods {
        pub use super::{
            iface::*,
        };
    }
    _pub_mods {
        pub use super::{
            cycle::_all::*,
            regime::_all::*,
            // state::_all::*,
            time::_all::*,
        };
    }
    _crate_internals {
        pub(crate) use super::_DOC_RUN_MODULES;
    }
}