messagebird-async 0.2.1

Wrapper around the message bird SMS API
Documentation
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_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 failure;

#[macro_use]
extern crate failure_derive;

pub mod errors;
use errors::*;

#[macro_use]
mod macros;

pub mod sms;