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
extern crate futures;

extern crate hyper;
extern crate hyper_rustls;

extern crate num;

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

extern crate serde_json;

extern crate serde_plain;

extern crate chrono;
extern crate url;
use url::Url;

#[macro_use]
extern crate log;

#[macro_use]
extern crate lazy_static;
extern crate regex;

//#[macro_use]
extern crate failure;

#[macro_use]
extern crate failure_derive;

pub mod errors;
use errors::*;

#[macro_use]
mod macros;

pub mod sms;