flamelens/lib.rs
1/// Application.
2pub mod app;
3
4/// Terminal events handler.
5pub mod event;
6
7/// Widget renderer.
8pub mod ui;
9
10/// Terminal user interface.
11pub mod tui;
12
13/// Event handler.
14pub mod handler;
15
16pub mod flame;
17
18pub mod state;
19
20pub mod view;
21
22#[cfg(feature = "python")]
23pub mod py_spy;
24
25#[cfg(feature = "python")]
26pub mod py_spy_flamegraph;