diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-23 18:58:05 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-24 15:21:32 -0700 |
commit | 4f7db09a5367170c2b06d6067e840c841e15eed6 (patch) | |
tree | 9d60824550700fe3fc05eb0bdd57bda0d454a840 /rust/src/bin/fatcatd.rs | |
parent | 76c8262b5b4163c50ed23c32448919006518059c (diff) | |
download | fatcat-4f7db09a5367170c2b06d6067e840c841e15eed6.tar.gz fatcat-4f7db09a5367170c2b06d6067e840c841e15eed6.zip |
clean up unused macro etc warnings
Diffstat (limited to 'rust/src/bin/fatcatd.rs')
-rw-r--r-- | rust/src/bin/fatcatd.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rust/src/bin/fatcatd.rs b/rust/src/bin/fatcatd.rs index 53df7f71..460246b5 100644 --- a/rust/src/bin/fatcatd.rs +++ b/rust/src/bin/fatcatd.rs @@ -9,7 +9,6 @@ extern crate fatcat_api; extern crate futures; extern crate iron; extern crate iron_slog; -#[macro_use] extern crate error_chain; #[macro_use] extern crate slog; @@ -18,7 +17,7 @@ extern crate slog_term; use clap::{App, Arg}; use iron::modifiers::RedirectRaw; -use iron::{status, Chain, Iron, IronResult, Request, Response, Url}; +use iron::{status, Chain, Iron, IronResult, Request, Response}; use iron_slog::{DefaultLogFormatter, LoggerMiddleware}; use slog::{Drain, Logger}; //use dotenv::dotenv; |