-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I was reviewing code, and just made a bunch of minor fixes. I wasn't sure where you want to take this code next, so its one PR - but I could remove any parts that you think are not improving. * Fix README crates link to point to crates.io, and add a few more status tags. * Migrate to 2021 edition * A few `cargo fmt` and `cargo clippy` changes * Use cm::Ordering to do the compare+match * A few minor CI improvements to catch those * Move main example to README.md, and made README.md included into the code as documentation - this way both GitHub and cargo.rs should the same documentation. * Make README examples runnable/testable (now part of `cargo test`) * I am not sure homepage should link to lib.rs -- perhaps consider removing it?
- Loading branch information
Showing
7 changed files
with
71 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
target/ | ||
|
||
.DS_Store | ||
Cargo.lock | ||
Cargo.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,57 @@ | ||
# bsdiff-rs | ||
|
||
[![Build status](https://github.com/space-wizards/bsdiff-rs/actions/workflows/rust.yml/badge.svg)](https://github.com/space-wizards/bsdiff-rs/actions/workflows/rust.yml) | ||
[![Cargo Link](https://img.shields.io/crates/v/bsdiff.svg)](https://crates.rs/crates/bsdiff) | ||
[![GitHub](https://img.shields.io/badge/github-bsdiff-8da0cb?logo=github)](https://github.com/space-wizards/bsdiff-rs) | ||
[![crates.io version](https://img.shields.io/crates/v/bsdiff.svg)](https://crates.io/crates/bsdiff) | ||
[![docs.rs docs](https://docs.rs/bsdiff/badge.svg)](https://docs.rs/bsdiff) | ||
[![crates.io version](https://img.shields.io/crates/l/bsdiff.svg)](https://github.comspace-wizards/bsdiff-rss/blob/main/LICENSE-APACHE) | ||
[![CI build](https://github.com/space-wizards/bsdiff-rs/actions/workflows/rust.yml/badge.svg)](https://github.com/space-wizards/bsdiff-rs/actions) | ||
|
||
Rust port of a [bsdiff library](https://github.com/mendsley/bsdiff). High performance patching. All written in safe Rust. | ||
Bsdiff is a method of diffing files. This crate is a port of a [bsdiff library](https://github.com/mendsley/bsdiff). | ||
High performance patching. All written in safe | ||
Rust. | ||
|
||
## Diffing | ||
It is usually a good idea to use bsdiff alongside a compression algorithm like bzip2. | ||
|
||
## Usage | ||
|
||
```rust | ||
let old = std::fs::read("old")?; | ||
let new = std::fs::read("new")?; | ||
let mut patch = Vec::new(); | ||
fn main() { | ||
let one = vec![1, 2, 3, 4, 5]; | ||
let two = vec![1, 2, 4, 6]; | ||
let mut patch = Vec::new(); | ||
|
||
bsdiff::diff(&one, &two, &mut patch).unwrap(); | ||
|
||
bsdiff::diff(&old, &new, &mut patch)?; | ||
// TODO: compress `patch` here | ||
std::fs::write("patch", &patch)?; | ||
let mut patched = Vec::with_capacity(two.len()); | ||
bsdiff::patch(&one, &mut patch.as_slice(), &mut patched).unwrap(); | ||
assert_eq!(patched, two); | ||
} | ||
``` | ||
|
||
## Patching | ||
## Diffing Files | ||
|
||
```rust | ||
let old = std::fs::read("old")?; | ||
let patch = std::fs::read("patch")?; | ||
// TODO: decompress `patch` here | ||
let mut new = Vec::new(); | ||
fn diff_files(file_a: &str, file_b: &str, patch_file: &str) -> std::io::Result<()> { | ||
let old = std::fs::read(file_a)?; | ||
let new = std::fs::read(file_b)?; | ||
let mut patch = Vec::new(); | ||
|
||
bsdiff::diff(&old, &new, &mut patch)?; | ||
// TODO: compress `patch` here | ||
std::fs::write(patch_file, &patch) | ||
} | ||
``` | ||
|
||
bsdiff::patch(&old, &mut patch.as_slice(), &mut new)?; | ||
std::fs::write("new", &new)?; | ||
## Patching Files | ||
|
||
```rust | ||
fn patch_file(file_a: &str, patch_file: &str, file_b: &str) -> std::io::Result<()> { | ||
let old = std::fs::read(file_a)?; | ||
let patch = std::fs::read(patch_file)?; | ||
// TODO: decompress `patch` here | ||
let mut new = Vec::new(); | ||
|
||
bsdiff::patch(&old, &mut patch.as_slice(), &mut new)?; | ||
std::fs::write(file_b, &new) | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters