From 837d0998da6c81c81b56570dc157b9ad98f3b7da Mon Sep 17 00:00:00 2001 From: Fahmi Akbar Wildana Date: Sun, 6 Oct 2019 10:10:25 +0700 Subject: [PATCH] Remove unused macros in bin/bat --- src/bin/bat/main.rs | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/bin/bat/main.rs b/src/bin/bat/main.rs index 83ee3b4e..b5a6e25c 100644 --- a/src/bin/bat/main.rs +++ b/src/bin/bat/main.rs @@ -1,26 +1,9 @@ // `error_chain!` can recurse deeply #![recursion_limit = "1024"] -#[macro_use] -extern crate error_chain; - #[macro_use] extern crate clap; -#[macro_use] -extern crate lazy_static; - -extern crate ansi_term; -extern crate atty; -extern crate console; -extern crate content_inspector; -extern crate dirs as dirs_rs; -extern crate encoding; -extern crate git2; -extern crate shell_words; -extern crate syntect; -extern crate wild; - mod app; mod clap_app; mod controller;