From e598a475e5b1f9b9e4cd13204db579c193ec37c3 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 Nov 2015 19:05:29 +0100 Subject: [PATCH] Use prettytable to implement TablePrinter --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index ace2b973..02e9d34c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,6 +5,7 @@ #[macro_use] extern crate glob; #[macro_use] extern crate uuid; #[macro_use] extern crate regex; +#[macro_use] extern crate prettytable; extern crate config; use cli::CliConfig;