blob: 6447f5e54af12f410e9526224e530a283b90fd9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# diff.rs
> An LCS based slice and string diffing implementation.
## Install
```toml
[dependencies]
diff = "0.1"
```
## Example
```rust
extern crate diff;
fn main() {
let left = "foo\nbar\nbaz\nquux";
let right = "foo\nbaz\nbar\nquux";
for diff in diff::lines(left, right) {
match diff {
diff::Result::Left(l) => println!("-{}", l),
diff::Result::Both(l, _) => println!(" {}", l),
diff::Result::Right(r) => println!("+{}", r)
}
}
}
```
prints
```
foo
-bar
baz
+bar
quux
```
## License
`diff` is primarily distributed under the terms of both the MIT license and the
Apache License (Version 2.0).
See LICENSE-APACHE, and LICENSE-MIT for details.
|