├── .github └── workflows │ ├── ci.yml │ └── rustdoc.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src ├── apply.rs ├── diff ├── cleanup.rs ├── mod.rs ├── myers.rs └── tests.rs ├── lib.rs ├── merge ├── mod.rs └── tests.rs ├── patch ├── format.rs ├── mod.rs └── parse.rs ├── range.rs └── utils.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/rustdoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/.github/workflows/rustdoc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/README.md -------------------------------------------------------------------------------- /src/apply.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/apply.rs -------------------------------------------------------------------------------- /src/diff/cleanup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/diff/cleanup.rs -------------------------------------------------------------------------------- /src/diff/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/diff/mod.rs -------------------------------------------------------------------------------- /src/diff/myers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/diff/myers.rs -------------------------------------------------------------------------------- /src/diff/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/diff/tests.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/merge/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/merge/mod.rs -------------------------------------------------------------------------------- /src/merge/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/merge/tests.rs -------------------------------------------------------------------------------- /src/patch/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/patch/format.rs -------------------------------------------------------------------------------- /src/patch/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/patch/mod.rs -------------------------------------------------------------------------------- /src/patch/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/patch/parse.rs -------------------------------------------------------------------------------- /src/range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/range.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwill/diffy/HEAD/src/utils.rs --------------------------------------------------------------------------------