//! Module for diff algorithm implementations
//!
//! This module contains the implementations of different diff algorithms,
//! as well as the common types and traits used by them.
// Re-export the common types and traits
pub use ;
// Re-export the algorithm implementations
pub use MyersDiff;
pub use SimilarDiff;
// Re-export the factory
pub use DiffAlgorithmFactory;