mesocarp 0.12.0

High-performance concurrency, synchronization, scheduling, and logging primitives in Rust
Documentation
1
2
3
4
5
6
7
8
//! A module for high performance simulation data loggers.
//!
//! Each data logger in this module is optimized for a different purpose,
//! however, all of which aim to minimize runtime allocations and deallocations and unnecessary cloning.

mod journal;

pub use journal::Journal;