luno 0.3.0

An unofficial Rust wrapper for the Luno API.
Documentation
//! A Rust wrapper for the Luno API. 🦀🚀
//!
//! In order to use some features of the [Luno API](https://luno.com/api) you need
//! to have an existing Luno account or you can sign up at [https://luno.com/signup](https://luno.com/signup).
//! Go to [https://www.luno.com/wallet/security/api_keys](https://www.luno.com/wallet/security/api_keys) to
//! create a new API key with appropriate permissions.

pub mod accounts;
pub mod beneficiaries;
pub mod client;
pub mod market;
pub mod orders;
pub mod quotes;
pub mod trades;
pub mod transactions;

mod credentials;
mod urls;

pub use client::LunoClient;
pub use market::{Currency, TradingPair};
pub use orders::{LimitOrderType, MarketOrderType, StopDirection};