async-git 0.0.0-squat-name

Pure-rust async implementation of git built on tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod commit;
mod hash_object;
mod interrogators;
mod object;
mod r#ref;
mod repo;

pub use self::commit::Commit;
pub use self::hash_object::hash_object;
pub use self::interrogators::*;
pub use self::object::{Object, Oid, ParsedObject};
pub use self::r#ref::Ref;
pub use self::repo::Repository;