From 3024e8ae71d8049fe6a41c09dc7ee94456a0759d Mon Sep 17 00:00:00 2001
From: Anders Blomdell <anders.blomdell@gmail.com>
Date: Tue, 12 Jan 2021 09:44:28 +0100
Subject: [PATCH] Make clap less dependent (who needs color)

---
 Cargo.toml | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 86c51b3..876d42e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,7 +10,10 @@ license = "GPL-3.0"
 publish = false
 
 [dependencies]
-clap = "2.20"
-libc = "0.2"
-threadpool = "1.3"
-bytes = "0.4"
+libc = "*"
+threadpool = "*"
+bytes = "*"
+
+[dependencies.clap]
+version = "*"
+default-features = false
\ No newline at end of file
-- 
GitLab