oxidelta 0.1.4

VCDIFF (RFC 3284) delta encoder/decoder — Rust reimplementation of xdelta3
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    #[cfg(feature = "cli")]
    oxidelta::cli::run();

    #[cfg(not(feature = "cli"))]
    {
        eprintln!("oxidelta: CLI not enabled. Rebuild with `--features cli`.");
        std::process::exit(1);
    }
}