about summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2018-05-28T20·24+0200
committerVincent Ambo <mail@tazj.in>2018-05-28T20·24+0200
commitef638bfa20d48c12960787865ec780b4e9773095 (patch)
treeb47e69b1a8b49380f0959330606bcce13b0cecf0 /src/main.rs
parent0db4512df4001cdb3d9dfaa8162b3a095757c18d (diff)
feat(stackdriver): Add initial Stackdriver API type definitions
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index ddf9154419..7c2a53f8a1 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,8 +1,16 @@
-// #[macro_use] extern crate failure;
+#[macro_use] extern crate failure;
+#[macro_use] extern crate hyper;
 #[macro_use] extern crate log;
+#[macro_use] extern crate serde_derive;
 
+extern crate chrono;
 extern crate env_logger;
 extern crate systemd;
+extern crate serde;
+extern crate serde_json;
+extern crate reqwest;
+
+mod stackdriver;
 
 use systemd::journal::*;
 use std::process;