line_diff 0.13.2

A tool to compare single lines by tokenizing them into chunks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]

use line_diff::compare_lines;
use line_diff::Config;
use std::error;

type Result<T> = std::result::Result<T, Box<dyn error::Error>>;

fn main() -> Result<()> {
    let config = Config::from_cmd_args();

    //println!("{:#?}", config);
    compare_lines(config)
}