1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

//! Library to used to access the Heroku API with Rust
#![allow(dead_code)] // Until every starting struct gets used
#![deny(//missing_docs,
        unsafe_code,
        unused_import_braces,
        unused_qualifications)]

#[macro_use]
extern crate error_chain;

#[macro_use]
mod macros;
mod utils;

pub mod client;
pub mod defaults;
pub mod errors;
pub mod headers;
pub mod apps;
pub mod teams;

pub use hyper::{HeaderMap, StatusCode};