fmtview 0.2.1

Fast terminal formatter and viewer for JSON, JSONL, XML-compatible markup, and formatted diffs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod external;
mod lazy_records;
mod model;
mod stdout;
mod view;

#[cfg(test)]
mod tests;

pub use stdout::diff_sources;

pub(crate) use lazy_records::LazyRecordDiff;
pub(crate) use model::{
    DiffChange, DiffIntensity, DiffLayout, DiffModel, DiffRange, NumberedDiffLine, SideDiffRow,
    UnifiedDiffRow,
};
pub(crate) use view::{DiffView, diff_view};