summaryrefslogtreecommitdiffstats
path: root/vendor/gix-diff/src/lib.rs
blob: a60f7bc04ee266ea5d4418be84deba56e5eb5b99 (plain)
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;