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 app;
7pub mod cli;
8pub mod color;
9pub mod decoder;
10pub mod dng_writer;
11pub mod encoder;
12pub mod error;
13pub mod export;
14pub mod file;
15pub mod file_browser;
16pub mod gpu;
17pub mod gradient;
18pub mod grading;
19pub mod gui;
20pub mod hardware;
21pub mod metadata;
22pub mod pipeline;
23pub mod preset;
24pub mod preview;
25pub mod stats;
26pub mod terminal;
27pub mod thumbnail;
28pub mod thumbnail_worker;
29pub mod ui;