added color library

This commit is contained in:
əlemi 2022-03-16 02:10:22 +01:00
parent 78d60b04a1
commit 821c1579e5
No known key found for this signature in database
GPG key ID: BBCBFE5D7244634E
2 changed files with 2 additions and 0 deletions

View file

@ -11,6 +11,7 @@ edition = "2021"
[dependencies] [dependencies]
regex = "1.5.5" regex = "1.5.5"
chrono = "0.4.19" chrono = "0.4.19"
colored = "2.0.0"
git-version = "0.3.5" # ughh just for git hash git-version = "0.3.5" # ughh just for git hash
const_format = "0.2.22" # ughh just for git hash const_format = "0.2.22" # ughh just for git hash
libnotify = "1.0.3" libnotify = "1.0.3"

View file

@ -3,6 +3,7 @@ mod utils;
use chrono::{DateTime, Local, Utc}; use chrono::{DateTime, Local, Utc};
use clap::{Parser, Subcommand}; use clap::{Parser, Subcommand};
use colored::Colorize;
use const_format::concatcp; use const_format::concatcp;
use git_version::git_version; use git_version::git_version;
use regex::Regex; use regex::Regex;