//! Borrowed objects are read-only structures referencing most data in a byte based backing store.
//!
//! Borrowed objects are expected to be deserialized from bytes that acts as backing store, and they
//! cannot mutated or serialized. Instead, one will convert them into their `owned` counterparts,
//! which support mutation and serialization.
pub use Commit;
pub use Id;
pub use Tag;
///
pub use Tree;
pub use Blob;
pub use ;