diff options
author | David Blajda <blajda@hotmail.com> | 2019-02-03 22:30:15 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2019-02-03 22:30:15 +0000 |
commit | 96715ceb58b24ee7220d98e421701daa550f44db (patch) | |
tree | 2d00984339efab0549fa07079be623b2a7b634f8 /src/lib.rs | |
parent | 0a5892c67fb02e09a621ac8796ac84232935f5c3 (diff) |
Add Helix and Kraken scopes. Client Config and allow injecting of responses
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,10 +1,12 @@ #![recursion_limit="128"] -#![feature(option_replace)] +#![feature(try_from)] extern crate futures; extern crate reqwest; extern crate serde; extern crate chrono; +extern crate serde_json; #[macro_use] extern crate serde_derive; +#[macro_use] extern crate log; pub mod helix; pub mod kraken; @@ -17,3 +19,4 @@ pub mod models; pub use self::helix::Client as HelixClient; pub use self::kraken::Client as KrakenClient; +pub use self::client::{ClientConfig, TestConfig}; |