of_runtime 0.2.0

Runtime orchestration and health supervision for the Orderflow engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

mod config;
mod engine;

pub use config::{
    load_engine_config_from_path, load_engine_config_report_from_path, validate_startup_config,
    ConfigCompatibilityMode, ConfigLoadReport,
};
pub use engine::{build_default_engine, DefaultEngine, Engine, EngineConfig, ExternalFeedPolicy, RuntimeError};

#[cfg(test)]
pub(crate) use engine::rotated_path;

#[cfg(test)]
include!("tests.rs");