eva_rt_common/lib.rs
1//! # eva-rt-common
2//!
3//! *eva-rt-common* is just a set of struct, traits and reusable functions used to develop real-time
4//! analysis tools.
5//!
6//! It was initially part of [eva-rt-engine](https://github.com/Yurand2000/eva-rt-engine), but has
7//! now been separated to develop other real-time analysis tools.
8//!
9//!
10
11/// Prelude module with commonly used exports.
12pub mod prelude {
13 pub use super::time::prelude::*;
14 pub use super::rt_task::prelude::*;
15}
16
17pub mod time;
18pub mod rt_task;
19pub mod utils;