| Service | Status |
| ------- | :----: |
| TravisCI | |
| DependencyCI |
|
| AppveyorCI |
|
| CodeCov |
|
| crates.io |
Pure Rust bindings to the Github API
Please look at the endpoints docs to see which endpoints are currently covered in the API.
github-rs is intended to work on all tier 1 supported Rust systems:
Due to the use of certain features github-rs requires rustc version 1.18 or higher.
Add the following to your Cargo.toml
toml
[dependencies]
github-rs = "0.5"
Then in your lib.rs
or main.rs
file add:
rust
extern crate github_rs;
use github_rs::client::Github;
Now you can start making queries. Here's a small example to get your user information:
```rust extern crate githubrs; use githubrs::client::Github;
fn main() { let client = Github::new("API TOKEN").unwrap(); let me = client.get() .user() .execute(); match me { Ok((headers, status, json)) => { println!("{}", headers); println!("{}", status); if let Some(json) = json{ println!("{}", json); } }, Err(e) => println!("{}", e) } } ```
See CONTRIBUTING.md for more information.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.