//! The patcher module is responsible for applying identified dependency updates
//! to the source files while strictly preserving formatting and comments.
//!
//! It consists of:
//! - `mutator`: Low-level string manipulation logic.
//! - `disk`: High-level orchestration of file I/O and patch calculation.
//! - `formatter`: Pretty-printing of diffs and results.
//! - `ui`: Interaction with the user for confirmations.
pub use Patcher;
pub use Formatter;
pub use ;