mirror of
https://github.com/encounter/objdiff.git
synced 2026-07-10 12:18:36 -07:00
dc9eec66b0
Uses the similar crate to support new diff algorithms: - Patience (new default) - Levenshtein (old default) - Myers - LCS (Longest Common Subsequence) Options in "Diff Options" -> "Algorithm..."
13 lines
149 B
Rust
13 lines
149 B
Rust
#![warn(clippy::all, rust_2018_idioms)]
|
|
|
|
pub use app::App;
|
|
|
|
mod app;
|
|
mod app_config;
|
|
mod config;
|
|
mod diff;
|
|
mod jobs;
|
|
mod obj;
|
|
mod update;
|
|
mod views;
|