async-gitlib 0.0.1

Asynchronous library with libgit2 artifacts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
> Asynchronous library with libgit2 artifacts.

This package provides asynchronous structures for working with [libgit2](https://libgit2.org) and uses [async-std](https://github.com/async-rs/async-std) and [git2](https://docs.rs/git2/) under the hood.

**Example**

```rs
let root = PathBuf::from("./target");
let clone = RepoClone::default();
clone.set_bare(false);
clone.set_branch("master");
clone.clone("https://github.com/xpepermint/async-gitlib", &root).await?;
```