summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml1
-rw-r--r--src/main.rs2
2 files changed, 3 insertions, 0 deletions
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;