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