Skip to main content

bee_tui/
lib.rs

1//! bee-tui — internal library exposing the modules the binary
2//! composes. Living as both a `[lib]` and a `[[bin]]` lets integration
3//! tests in `tests/` exercise the cockpit's components against
4//! fixtures, without launching the full TUI loop.
5//!
6//! Public exports are stable for tests only — there is no ABI
7//! commitment for downstream library users. Use the `bee-tui`
8//! command-line binary, not this lib.
9
10pub mod action;
11pub mod api;
12pub mod app;
13pub mod bee_log;
14pub mod bee_log_tailer;
15pub mod bee_log_writer;
16pub mod bee_supervisor;
17pub mod cli;
18pub mod components;
19pub mod config;
20pub mod durability;
21pub mod errors;
22pub mod log_capture;
23pub mod logging;
24pub mod manifest_walker;
25pub mod metrics;
26pub mod metrics_server;
27pub mod pprof_bundle;
28pub mod stamp_preview;
29pub mod state;
30pub mod theme;
31pub mod tui;
32pub mod utility_verbs;
33pub mod watch;