messagebird_async/
lib.rs

1extern crate futures;
2
3extern crate hyper;
4extern crate hyper_rustls;
5
6extern crate num;
7
8extern crate serde;
9#[macro_use]
10extern crate serde_derive;
11
12extern crate serde_json;
13
14extern crate serde_plain;
15
16extern crate serde_qs;
17extern crate serde_url_params;
18
19extern crate chrono;
20extern crate url;
21use url::Url;
22
23#[macro_use]
24extern crate log;
25
26#[macro_use]
27extern crate lazy_static;
28extern crate regex;
29
30#[macro_use]
31extern crate enum_primitive_derive;
32extern crate num_traits;
33
34//#[macro_use]
35extern crate failure;
36
37#[macro_use]
38extern crate failure_derive;
39
40#[macro_use]
41mod macros;
42
43mod serviceerror;
44use crate::serviceerror::*;
45
46pub mod errors;
47use crate::errors::*;
48
49pub mod sms;