git-object 0.4.0

Borrowed and owned git objects with deserialization and serialization support
Documentation
//! Borrowed objects are expected to be deserialized from bytes that acts as backing store, and they
//! can not be serialized directly. Instead, one will convert them into their `owned` counterparts,
//! which support serialization.
mod commit;
pub use commit::Commit;

mod id;
pub use id::*;

mod tag;
pub use tag::Tag;

pub mod tree;
#[doc(inline)]
pub use tree::Tree;

mod blob {
    use std::convert::Infallible;

    #[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone)]
    #[cfg_attr(feature = "serde1", derive(serde::Serialize, serde::Deserialize))]
    pub struct Blob<'a> {
        pub data: &'a [u8],
    }

    impl<'a> Blob<'a> {
        pub fn from_bytes(input: &[u8]) -> Result<Blob, Infallible> {
            Ok(Blob { data: input })
        }
    }
}

pub use blob::Blob;

mod object;
pub use object::*;

mod parse;