jojodiff-rs
Rust library for working with JojoDiff files
The original Jojos Binary Diff tool can be found at https://jojodiff.sourceforge.net/ and https://sourceforge.net/projects/jojodiff/
This library is a Rust implementation of the JojoDiff file format. It is intended to be used as a library for other Rust projects that need to work with JojoDiff files.
Currently, it only supports applying JojoDiff patch files to binary files.
Usage
cargo add jojodiff
- Check the docs at https://docs.rs/jojodiff
- Check the unit tests in src/lib.rs for examples.
Logging
This library uses the log crate for logging. To enable logging, set the RUST_LOG environment variable to debug.
Running tests
Running a single test with logging:
RUST_LOG=debug