github-rs 0.7.0

Pure Rust bindings to the Github API
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(deprecated)] // cause()
error_chain! {
    foreign_links {
        CellBorrowMut(::std::cell::BorrowMutError);
        Hyper(::hyper::Error);
        Http(::hyper::http::Error);
        HeaderValue(::hyper::header::InvalidHeaderValue);
        Uri(::hyper::http::uri::InvalidUriParts);
        HyperTls(::native_tls::Error) #[cfg(feature = "rust-native-tls")];
        Io(::std::io::Error);
        SerdeJson(::serde_json::Error);
    }
}