mirror of
https://git.alemi.dev/memo-cli.git
synced 2024-11-14 05:39:19 +01:00
added color library
This commit is contained in:
parent
78d60b04a1
commit
821c1579e5
2 changed files with 2 additions and 0 deletions
|
@ -11,6 +11,7 @@ edition = "2021"
|
|||
[dependencies]
|
||||
regex = "1.5.5"
|
||||
chrono = "0.4.19"
|
||||
colored = "2.0.0"
|
||||
git-version = "0.3.5" # ughh just for git hash
|
||||
const_format = "0.2.22" # ughh just for git hash
|
||||
libnotify = "1.0.3"
|
||||
|
|
|
@ -3,6 +3,7 @@ mod utils;
|
|||
|
||||
use chrono::{DateTime, Local, Utc};
|
||||
use clap::{Parser, Subcommand};
|
||||
use colored::Colorize;
|
||||
use const_format::concatcp;
|
||||
use git_version::git_version;
|
||||
use regex::Regex;
|
||||
|
|
Loading…
Reference in a new issue