From a254c5794938ae084c6b0caa8758c390ea76d057 Mon Sep 17 00:00:00 2001 From: DastInDark <2350416+hitenkoku@users.noreply.github.com> Date: Wed, 28 Sep 2022 21:28:20 +0900 Subject: [PATCH] removed no use crate(prettytable-rs) import #707 - 1. [] Unified output one table with -s and -d option - 2. [] add channel column to table output - 3. [] Remove First Timestamp and Last Timestamp with -d option - 4. [] Output csv with -o and -s option - 5. [] Separete two column Count and Percent - 6. [x] change table format output crate from prettytable-rs to comfy_table. --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index db666270..655018ce 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,6 +7,4 @@ pub mod options; pub mod timeline; pub mod yaml; #[macro_use] -extern crate prettytable; -#[macro_use] extern crate horrorshow;