You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 16, 2023. It is now read-only.
`text-diff` can be used to compare two text files and output the difference between them. `text-diff` was written in `Rust` and offers a simple and intuitive user-interface for Windows, Linux and macOS.
10
+
`text-diff` can be used to compare two text files and output the difference between them. `text-diff` was written
11
+
in `Rust` and offers a simple and intuitive user-interface for Windows, Linux and macOS.
12
+
13
+
## Features
14
+
15
+
* Compare two text files
16
+
* Display the differences between two text files
17
+
* Export the differences to TXT, CSV or JSON
18
+
* Written in [Rust](https://www.rust-lang.org/)
19
+
* Cross-platform
20
+
* Fully native binaries
10
21
11
22
## Building
12
23
@@ -17,20 +28,24 @@ cargo build
17
28
```
18
29
19
30
A `release` build with extra optimizations can be built by issuing the following command:
31
+
20
32
```shell
21
33
cargo build --release
22
34
```
23
35
24
36
### Tips
25
37
26
-
On `Linux` you can further decrease the binary size by issuing a `strip` command, which will 'strip' symbols from the object file:
38
+
On `Linux` you can further decrease the binary size by issuing a `strip` command, which will 'strip' symbols from the
0 commit comments