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
#![deny(unstable_features, unused_must_use, unused_mut, unused_imports, unused_import_braces)]
#[macro_use]
extern crate failure;
extern crate hex;
extern crate hyper;
extern crate ring;
extern crate serde;
#[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 tokio;
extern crate tungstenite;
extern crate url;

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

pub use client::Binance;