blob: 6d94a75919ff6e1c535014db9a1bc10c267cc7f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! Algorithms for diffing various git object types and for generating patches, highly optimized for performance.
//! ## Feature Flags
#![cfg_attr(
feature = "document-features",
cfg_attr(doc, doc = ::document_features::document_features!())
)]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
#![deny(missing_docs, rust_2018_idioms)]
#![forbid(unsafe_code)]
///
pub mod tree;
///
#[cfg(feature = "blob")]
pub mod blob;
|