Crates.io | binpatch |
lib.rs | binpatch |
version | 0.1.2 |
source | src |
created_at | 2017-11-04 13:59:51.545056 |
updated_at | 2017-11-04 19:32:30.801338 |
description | Simple hex binary patcher library |
homepage | https://github.com/hiseni/binpatch |
repository | https://github.com/hiseni/binpatch |
max_upload_size | |
id | 38120 |
size | 5,359 |
Binary patching for Rust
extern crate binpatch;
use binpatch::Patch;
fn main() {
Patch::new()
.file("lib.so")
.replace(b"FF", b"CC")
.output("lib.patched.so")
.execute()
.unwrap();
}
All sorts of contributions are warmly welcomed.
There is no special restricted form for those willing to contribute to this project.
You can start contributing by filing an issue or forking this repository.