coinnect 0.5.12

A Rust library to connect to various crypto-currencies exchanges.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Use this module to interact with Poloniex exchange.

pub mod api;
pub mod generic_api;
pub mod credentials;
pub mod utils;

pub use self::credentials::PoloniexCreds;
pub use self::api::PoloniexApi;
pub use self::api::{MoveOrderOption, PlaceOrderOption};