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
44
45
46
47
48
49
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 serde_qs;
extern crate serde_url_params;

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 enum_primitive_derive;
extern crate num_traits;

//#[macro_use]
extern crate failure;

#[macro_use]
extern crate failure_derive;

#[macro_use]
mod macros;

mod serviceerror;
use crate::serviceerror::*;

pub mod errors;
use crate::errors::*;

pub mod sms;