| Service | Status |
| ------- | :----: |
| TravisCI | |
| DependencyCI |
|
| AppveyorCI |
|
| CodeCov |
|
| crates.io |
|
Pure Rust bindings to the Github V3 API. If you want bindings to the V4 library see the github-graphql-rs library.
Please look at the endpoints docs to see which endpoints are currently covered in the API. This is for the Github V3 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.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::
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.