git_rs 0.1.0

A (work in progress) pure rust git implementation.
Documentation
#[macro_use]
extern crate error_chain;

pub mod id;
pub mod delta;
pub mod errors;
pub mod stores;
pub mod objects;
pub mod pack;
pub mod refs;
pub mod walk;
pub mod identity;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}