bitfinex 0.5.0

Rust Library for the Bitfinex API
Documentation
use std;
use reqwest;
use url;
use serde_json;
use tungstenite;

error_chain! {
    types {
        Error, ErrorKind, ResultExt, Result;
    }

    errors {         
        Internal(t: String) {
            description("invalid toolchain name")
            display("invalid toolchain name: '{}'", t)
        }
    }

    foreign_links {
        ReqError(reqwest::Error);
        InvalidHeaderError(reqwest::header::InvalidHeaderValue);
        IoError(std::io::Error);
        ParseFloatError(std::num::ParseFloatError);
        UrlParserError(url::ParseError);
        Json(serde_json::Error);
        Tungstenite(tungstenite::Error);
        TimestampError(std::time::SystemTimeError);
    }

}