diff options
author | Vincent Ambo <mail@tazj.in> | 2018-05-28T20·24+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2018-05-28T20·24+0200 |
commit | ef638bfa20d48c12960787865ec780b4e9773095 (patch) | |
tree | b47e69b1a8b49380f0959330606bcce13b0cecf0 /src/main.rs | |
parent | 0db4512df4001cdb3d9dfaa8162b3a095757c18d (diff) |
feat(stackdriver): Add initial Stackdriver API type definitions
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index ddf9154419a8..7c2a53f8a161 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; |