├── .editorconfig ├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── diff.rs ├── lib.rs └── patch.rs └── tests ├── expected_diff ├── test.rs ├── test_1 └── test_2 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | .vscode/ 3 | target/ 4 | 5 | .DS_Store 6 | Cargo.lock 7 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/diff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/src/diff.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/patch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/src/patch.rs -------------------------------------------------------------------------------- /tests/expected_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/tests/expected_diff -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/tests/test.rs -------------------------------------------------------------------------------- /tests/test_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/tests/test_1 -------------------------------------------------------------------------------- /tests/test_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-wizards/bsdiff-rs/HEAD/tests/test_2 --------------------------------------------------------------------------------