| Service | Status |
| ------- | :----: |
| TravisCI | |
| DependencyCI |
|
| AppveyorCI |
|
| CodeCov |
|
| crates.io |
Pure Rust bindings to the Github API using Hyper and Serde
This is in no way close to being done for most of the Github API. That being said it's in a usable state for some things and can be extended to cover other parts of the API easily now that requests and error handling underlying the API are stabilized for now.
This will eventually build on stable once procedural macros is stabilized. It's thought to be ready for Rust 1.15
github-rs is intended to work on all tier 1 supported Rust systems:
You'll need OpenSSL installed on your machine since it's an underlying library that requires it. This is true for all platforms.
src
directory. If you wish to add endpoints or modify how one works that
would be the place to go to.src/types.rs
contains all new types and aliased types that are used
throughout github-rs.src/json.rs
contains all of the structures that represent the JSON
that are either returned from or sent to the API.src/error.rs
contains all code related to error handling including
typessrc/github.rs
contains the client code as well as top level
documentation of the library. Most code is publicly reexported here.src/error.rs
unwrap
or expect
.All code is licensed under The MIT License. By submitting code you not only agree to submit it under the same license, but are also saying that the code you submitted is your own.