git_rs 0.1.0

A (work in progress) pure rust git implementation.
Documentation
error_chain! {
    foreign_links {
        Io(::std::io::Error);
        Encoding(::std::str::Utf8Error);
        BadMode(::std::num::ParseIntError);
    }

    errors {
        BadId
        TruncatedDeltaOutput
        BadDeltaBase
        BadLooseObject
        NotImplemented
        CorruptedPackfile
        InvalidPackfileIndex
        UnsupportedPackfileIndexVersion
        CorruptedPackfileIndex
        NeedStorageSet
    }
}