socketlabs/
lib.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5//!  Unofficial Rust library for the SocketLabs API.
6//!
7//! The code for this project resides at [https://github.com/brizental/socketlabs-rs](https://github.com/brizental/socketlabs-rs)
8//!
9//! # Support
10//!
11//! The following APIs are **supported**
12//!
13//! * Injection
14//!
15//! The following APIs are **unsupported**
16//!
17//! * Notification
18//! * Marketing
19//! * Inbound
20//! * Reporting
21//! * On-Demand
22
23extern crate failure;
24#[macro_use]
25extern crate failure_derive;
26extern crate reqwest;
27extern crate serde;
28extern crate serde_json;
29#[macro_use]
30extern crate serde_derive;
31
32pub mod error;
33pub mod message;
34pub mod request;
35pub mod response;