lognplot/lib.rs
1//!
2//! Log and plot library.
3//!
4//! This library serves the purpose of logging data
5//! from a system, and plotting the data at the same
6//! time.
7//!
8//! This can be handy when debugging a system under test.
9
10#[macro_use]
11extern crate log;
12
13pub mod chart;
14pub mod geometry;
15pub mod render;
16pub mod style;
17pub mod time;
18pub mod tsdb;
19
20#[cfg(feature = "server")]
21pub mod server;