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
//! Rust bindings for the ArenaNet Guild Wars 2 API.

#![deny(missing_debug_implementations)]
//#![deny(missing_docs)]

// Async HTTP Stuffs
extern crate futures;
extern crate hyper;
extern crate hyper_tls;
extern crate tokio_core;
extern crate url;

// Serde
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_json;

// Logging
#[macro_use]
extern crate log;

// Modules and exports
#[macro_use]
pub(crate) mod macros;
pub(crate) mod anet;
pub(crate) mod internal;
pub mod prelude;