1 2 3 4 5 6 7
//! Contains the logic for applying a parsed patch to file content. //! //! This module includes the backtracking patcher implementation. pub mod backtracking_patcher; pub mod state; pub mod whitespace_mode;