mkups 0.1.0

Toolkit for creating, applying, and inspecting .ups patches
Documentation
1
2
3
4
5
6
7
8
//! `mkups` is a library (and CLI tool) for creating, applying and inspecting UPS patches.
//! * For creating patches, start with the [create](crate::create::create) function.
//! * For applying patches, start with the [patch_file](crate::apply::patch_file) function.
//! * For inspecting patches, use the functions in the [parse](crate::parse) module.
pub mod data;
pub mod parse;
pub mod apply;
pub mod create;