//! This crate provides types for [read-only git objects][borrowed::Object] backed by bytes provided in gits serialization format
//! as well as [mutable versions][owned::Object] of these. The latter can be serialized into gits serialization format for objects.
use ;
/// For convenience to allow using `bstr` without adding it to own cargo manifest
pub use bstr;
/// Objects sharing data with a backing store to minimize allocations
/// Mutable objects with each field being separately allocated and mutable.
pub use *;
///
/// Denotes the kind of hash used to identify objects.