1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Library to used to access the Github API with Rust
#![feature(custom_derive, proc_macro, plugin)]
#![cfg_attr(feature = "dev", plugin(clippy))]
// This allows for better enforc
// unstable_features add one day when custom derive is stableed style and project features
#![deny(missing_docs, missing_debug_implementations, missing_copy_implementations,
        trivial_casts, trivial_numeric_casts, unsafe_code, unused_import_braces,
        unused_qualifications)]

#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_json;
extern crate hyper;

// Only here for error handling with hyper
extern crate solicit;
extern crate url;

// This has to be here so the macros are available everywhere
#[macro_use]
mod macros;
#[macro_use]
mod error;

mod activity;
mod enterprise;
mod gists;
pub mod github;
mod git_data;
mod issues;
mod json;
mod migration;
mod miscellaneous;
mod organizations;
mod pull_requests;
mod reactions;
mod repositories;
mod requests;
mod search;
mod types;
mod users;