bottom 0.14.6

A customizable cross-platform graphical process/system monitor for the terminal. Supports Linux, macOS, and Windows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A graph displaying data in the y-axis over time in the x-axis.
//!
//! A "base" version is available, based on a vendored version of
//! ratatui's [charts](https://docs.rs/ratatui/latest/ratatui/widgets/struct.Chart.html),
//! as are variants for common use cases.

mod base;
mod vendored;

pub(crate) use base::*;
pub(crate) use vendored::*;