github-rs

| Service | Status | | ------- | :----: | | TravisCI | Build Status | | DependencyCI | DependencyStatus | | AppveyorCI | Build status | | CodeCov | codecov | | crates.io | crates.io |

Pure Rust bindings to the Github V3 API. If you want bindings to the V4 library see the github-graphql-rs library.

Incomplete Bindings

Please look at the endpoints docs to see which endpoints are currently covered in the API. This is for the Github V3 API.

Dependencies and Support

github-rs is intended to work on all tier 1 supported Rust systems:

Minimum Compiler Version

Due to the use of certain features github-rs requires rustc version 1.18 or higher.

Project Aims

Getting Started

Add the following to your Cargo.toml

toml [dependencies] github-rs = "0.6" serde_json = "1.0"

Then in your lib.rs or main.rs file add:

rust extern crate github_rs; extern crate serde_json; use github_rs::client::{Executor, Github}; use serde_json::Value;

Now you can start making queries. Here's a small example to get your user information:

```rust extern crate githubrs; extern crate serdejson; use githubrs::client::{Executor, Github}; use serdejson::Value;

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) } } ```

Hacking on the Library

Contributing

See CONTRIBUTING.md for more information.

License

Licensed under either of

at your option.

Licensing

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.