3 releases
Uses old Rust 2015
0.1.2 | Nov 4, 2017 |
---|---|
0.1.1 | Nov 4, 2017 |
0.1.0 | Nov 4, 2017 |
#104 in #patch
6KB
114 lines
binpatch
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
Dependencies
~1.4–2.7MB
~57K SLoC