sley-diff-merge 0.4.3

Native-Rust Git diff and three-way merge engine for the sley engine, including tree diffing and the textual renderer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Diff rendering format helpers (word-diff, colors, funcname adapters).

mod funcname;
mod hunks;
mod words;

pub use funcname::{CompiledFuncname, default_funcname_heading};
pub use hunks::{WordDiffAdapter, heading_classifier, render_colors};
pub use words::{
    DiffColors, WordDiffBuffers, WordDiffConfig, WordDiffMode, parse_color_value, push_colored_line,
};

#[cfg(test)]
mod tests;