From e9c4a0c3908afc7b05775bffe7b869679b2b7772 Mon Sep 17 00:00:00 2001
From: Anders Blomdell <anders.blomdell@control.lth.se>
Date: Fri, 20 Apr 2018 11:07:56 +0200
Subject: [PATCH] Add missing field separator

---
 Cargo.toml  | 10 +++++-----
 src/main.rs |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index e316b7e..6aa7146 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "hashtoc"
-version = "0.1.0"
+version = "0.1.1"
 authors = ["Anders Blomdell <anders.blomdell@control.lth.se>"]
 build = "build.rs"
 links = "libhash.a,libssl"
@@ -10,7 +10,7 @@ license = "GPL-3.0-only"
 publish = false
 
 [dependencies]
-clap = "2.20.5"
-libc = "0.2.21"
-threadpool = "1.3.2"
-bytes = "0.4.6"
+clap = "2.20"
+libc = "0.2"
+threadpool = "1.3"
+bytes = "0.4"
diff --git a/src/main.rs b/src/main.rs
index e53905a..107486e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -541,7 +541,7 @@ fn dispatcher(options: clap::ArgMatches,
                         _ => break
                     }
                 }
-                bprint!("{}", front.kind);
+                bprint!("{}:", front.kind);
                 bwrite!(path.as_os_str().as_bytes());
                 zprintln!();
             }
-- 
GitLab