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
//#![deny(unstable_features, unused_must_use, unused_mut, unused_imports, unused_import_braces)]
#[macro_use]
extern crate failure;
extern crate hex;
extern crate hmac;
extern crate hyper;
extern crate serde;
extern crate sha2;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
#[macro_use]
extern crate log;
extern crate chrono;
extern crate futures;
extern crate hyper_tls;
extern crate result;
extern crate sugar;
extern crate tokio;
extern crate tokio_tungstenite;
extern crate tungstenite;
extern crate url;

mod client;
pub mod error;
pub mod model;
mod transport;

pub use client::Binance;