From d0f7dff9a51fa33612b71d03a3736dd107e9a747 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Thu, 5 Jul 2018 22:59:14 +0300 Subject: Oops we need colored --- Cargo.toml | 1 + src/main.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c7698f7..62fcd62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,5 +4,6 @@ version = "0.1.0" authors = ["Yuval Adam <_@yuv.al>"] [dependencies] +colored = "1.6" clap = "2.32" termios = "0.3.0" diff --git a/src/main.rs b/src/main.rs index fa67bcf..4205b78 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,7 @@ extern crate clap; +extern crate colored; +use colored::*; use clap::{Arg, App}; use std::path::Path; use std::process; -- cgit v1.3.1