1 2 3 4 5 6 7 8
//! SimEngine framework library. //! //! This single crate contains the runtime-facing core model, network layer, //! and plugin API/ABI. The package also ships the `simengine` CLI binary. pub mod core; mod network; pub mod plugin_api;