3 releases

Uses old Rust 2015

0.1.2 Nov 4, 2017
0.1.1 Nov 4, 2017
0.1.0 Nov 4, 2017

#96 in #patch

MIT license

6KB
114 lines

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

Dependencies

~1.4–2.6MB
~58K SLoC