summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorDavid Blajda <blajda@hotmail.com>2019-02-03 22:30:15 +0000
committerDavid Blajda <blajda@hotmail.com>2019-02-03 22:30:15 +0000
commit96715ceb58b24ee7220d98e421701daa550f44db (patch)
tree2d00984339efab0549fa07079be623b2a7b634f8 /src/lib.rs
parent0a5892c67fb02e09a621ac8796ac84232935f5c3 (diff)
Add Helix and Kraken scopes. Client Config and allow injecting of responses
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 9a90e59..38778e2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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};