ghrs
ghrs is a simple client for GitHub v3 API. This has a simple interface and blocking I/O, it avoids complexity unlike Async I/O, so it's so easy to use. ghrs is inspired by Octocrab.
The following modules are available now.
Usage
GitHub Enterprise
If you use ghrs for GitHub Enterprise, set base_url.
// GET `https://github.your_company.com/api/v3/repos/owner/repo/issues`
let client = new;
let mut current_page = client
.base_url
.token
.issues
.list
.send?;