swish_api/lib.rs
1//! # Swish
2//!
3//! Rust API bindings for the [Swish API](https://developer.getswish.se/merchants/).
4//! Built using [hyper](https://docs.rs/hyper/0.12.16/hyper/) and [tokio](https://docs.rs/tokio-core/0.1.17/tokio_core/).
5//!
6extern crate futures;
7extern crate hyper;
8extern crate hyper_tls;
9extern crate native_tls;
10extern crate serde;
11extern crate tokio_core;
12
13#[macro_use]
14extern crate serde_json;
15#[macro_use]
16extern crate serde_derive;
17
18pub mod client;
19pub mod error;