mcraw_tui/lib.rs
1//! Public library surface for `mcraw-tui`. The binary in `src/main.rs`
2//! is a thin wrapper around the same modules; integration tests under
3//! `tests/` import from this crate to exercise the public API.
4
5pub mod agx;
6pub mod allocator;
7pub mod app;
8pub mod cli;
9pub mod color;
10pub mod decoder;
11pub mod dng_writer;
12pub mod encoder;
13pub mod error;
14pub mod export;
15pub mod file;
16pub mod file_browser;
17pub mod gpu;
18pub mod gradient;
19pub mod grading;
20pub mod gui;
21pub mod hardware;
22pub mod metadata;
23pub mod pipeline;
24pub mod preset;
25pub mod preview;
26pub mod stats;
27pub mod ui;