whirr 0.3.0

A whirring macOS system dashboard for your terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `whirr` library crate: exposes the app state, sampler, and ui modules so
//! both the thin `main.rs` binary and the integration test suite
//! (`tests/render.rs`) can drive the same code paths.

pub mod units;

pub mod history;

pub mod mac;

pub mod app;
pub mod sampler;
pub mod ui;