zenpatch 0.5.2

A robust library for applying text-based patches, designed for AI coding agents with backtracking algorithm
Documentation
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;