From 2a56b0f4ada8a8366c7222b3a25b3ce975e984e4 Mon Sep 17 00:00:00 2001 From: Edward Shen Date: Sat, 9 Nov 2019 17:13:11 -0500 Subject: [PATCH] remove extern crate statements --- src/main.rs | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/src/main.rs b/src/main.rs index 44ebd1e..3188de3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,16 +1,9 @@ #![forbid(unsafe_code)] -extern crate actix; -extern crate actix_web; -extern crate chrono; -extern crate env_logger; -extern crate reqwest; -extern crate ron; -extern crate serde; -extern crate tokio; +#[macro_use] +extern crate log; #[macro_use] extern crate tera; -extern crate ring; #[cfg(feature = "rss_feed")] extern crate rss;