cxmr-ws-client-binance 0.0.1

Binance WebSocket feed client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Crypto-bank Binance WebSocket stream.
#![feature(try_trait)]

extern crate chrono;
extern crate hashbrown;

extern crate cxmr_api_binance;
extern crate cxmr_balances;
extern crate cxmr_currency;
extern crate cxmr_exchanges;
extern crate cxmr_feeds;
extern crate cxmr_ws_client;

mod priv_proto;
mod pub_proto;

pub use self::priv_proto::*;
pub use self::pub_proto::*;