patcher 0.2.1

patcher is a Rust library for generating and applying Git-style unified diff patches.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Differ

Please help to make differ a directory structure like this:

```bash
differ/
├── mod.rs
├── myers.rs
├── naive.rs
└── README.md
```

Extract `pub fn generate(&self) -> Patch` into a trait, move existing code to naive.rs, move myers related code to myers.rs and implement the trait for all the algorithms.

Please also add tests for all the algorithms.