1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//!
//! The GNU patch Rust library.
//!

#[macro_use]
extern crate pest_derive;
#[macro_use]
extern crate failure_derive;

mod error;
mod parser;

pub use crate::{
    error::Error as PatchError,
    parser::{PatchProcessor, PatchResult},
};