1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! Crypto-bank Binance exchange HTTP API client.
#![feature(test, try_trait)]

#[cfg(test)]
extern crate test;

#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_json;

extern crate hashbrown;
extern crate hex;
extern crate ring;

extern crate async_trait;

extern crate cxmr_http_client;

extern crate cxmr_api;
extern crate cxmr_api_clients_errors;
extern crate cxmr_balances;
extern crate cxmr_currency;
extern crate cxmr_exchanges;

pub mod private;
pub mod public;

pub use self::private::PrivateClient;
pub use self::public::PublicClient;