From 57f3894f7616c7e5bc356ea76481a8e771e96e7e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 2 Aug 2016 16:27:53 +0200 Subject: [PATCH] Add dependency: prettytable = 0.6.* --- libimagentrylist/Cargo.toml | 1 + libimagentrylist/src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/libimagentrylist/Cargo.toml b/libimagentrylist/Cargo.toml index 97c099c9..b99f113b 100644 --- a/libimagentrylist/Cargo.toml +++ b/libimagentrylist/Cargo.toml @@ -7,6 +7,7 @@ authors = ["Matthias Beyer "] clap = "2.1.1" log = "0.3" toml = "0.1.25" +prettytable-rs = "0.6.*" [dependencies.libimagstore] path = "../libimagstore" diff --git a/libimagentrylist/src/lib.rs b/libimagentrylist/src/lib.rs index 14bf910c..8c6b8869 100644 --- a/libimagentrylist/src/lib.rs +++ b/libimagentrylist/src/lib.rs @@ -17,6 +17,7 @@ extern crate clap; #[macro_use] extern crate log; extern crate toml; +extern crate prettytable; extern crate libimagstore; extern crate libimagutil;