//! This crate provides types for identifying git objects using a hash digest.
//!
//! These are provided in borrowed versions as well as owned ones.
/// For convenience to allow using `bstr` without adding it to own cargo manifest
pub use bstr;
/// The size of a SHA1 hash digest in bytes
pub const SIZE_OF_SHA1_DIGEST: usize = 20;
/// Denotes the kind of hash used to identify objects.