binpatch

Crates.iobinpatch
lib.rsbinpatch
version0.1.2
sourcesrc
created_at2017-11-04 13:59:51.545056
updated_at2017-11-04 19:32:30.801338
descriptionSimple hex binary patcher library
homepagehttps://github.com/hiseni/binpatch
repositoryhttps://github.com/hiseni/binpatch
max_upload_size
id38120
size5,359
Bogdan Arabadzhi (hiseni)

documentation

https://docs.rs/binpatch

README

binpatch Build Status Latest Version Maintenance

Binary patching for Rust

Usage

extern crate binpatch;

use binpatch::Patch;

fn main() {
    Patch::new()
        .file("lib.so")
        .replace(b"FF", b"CC")
        .output("lib.patched.so")
        .execute()
        .unwrap();
}

Contributing

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.

License

MIT

Commit count: 14

cargo fmt