summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tool/Cargo.toml2
-rw-r--r--tool/src/sq.rs4
2 files changed, 2 insertions, 4 deletions
diff --git a/tool/Cargo.toml b/tool/Cargo.toml
index d5a18935..0017c77f 100644
--- a/tool/Cargo.toml
+++ b/tool/Cargo.toml
@@ -11,7 +11,7 @@ sequoia-net = { path = "../net" }
sequoia-store = { path = "../store" }
clap = "2.32.0"
failure = "0.1.2"
-prettytable-rs = "0.7.0"
+prettytable-rs = "0.8.0"
rpassword = "2.0.0"
tempfile = "3.0.4"
time = "0.1.38"
diff --git a/tool/src/sq.rs b/tool/src/sq.rs
index dc893dd6..52a63d28 100644
--- a/tool/src/sq.rs
+++ b/tool/src/sq.rs
@@ -9,9 +9,7 @@ extern crate tempfile;
extern crate time;
use failure::ResultExt;
-use prettytable::Table;
-use prettytable::cell::Cell;
-use prettytable::row::Row;
+use prettytable::{Table, Cell, Row};
use std::fs::{File, OpenOptions};
use std::io;
use std::path::PathBuf;