1//! Algorithms for diffing various git object types and for generating patches, highly optimized for performance. 2#![deny(missing_docs, rust_2018_idioms)] 3#![forbid(unsafe_code)] 4 5/// 6pub mod tree; 7 8/// 9pub mod blob;