Skip to content

barabadzhi/binpatch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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