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 alerts;
12pub mod api;
13pub mod app;
14pub mod bee_log;
15pub mod bee_log_tailer;
16pub mod bee_log_writer;
17pub mod bee_supervisor;
18pub mod cli;
19pub mod components;
20pub mod config;
21pub mod config_doctor;
22pub mod durability;
23pub mod economics_oracle;
24pub mod errors;
25pub mod feed_probe;
26pub mod feed_timeline;
27pub mod log_capture;
28pub mod logging;
29pub mod manifest_walker;
30pub mod metrics;
31pub mod metrics_server;
32pub mod once;
33pub mod pprof_bundle;
34pub mod stamp_preview;
35pub mod state;
36pub mod theme;
37pub mod tui;
38pub mod uploads;
39pub mod utility_verbs;
40pub mod version_check;
41pub mod watch;