From 28871c9f52982837f4515ff473402024ecedcbf1 Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Mon, 5 May 2025 00:34:10 +0200 Subject: [PATCH] src/main.rs: disable blinking --- src/main.rs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index 75d6aa2..2cba86c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -192,7 +192,7 @@ fn print_added(set: HashSet<&str>, post: &HashMap<&str, HashSet<&str>>) { "[A:]".green().bold(), p, "@".yellow().bold(), - version_str.blue().blink() + version_str.blue() ); } } @@ -208,7 +208,7 @@ fn print_removed(set: HashSet<&str>, pre: &HashMap<&str, HashSet<&str>>) { "[R:]".red().bold(), p, "@".yellow(), - version_str.blue().blink() + version_str.blue() ); } } @@ -232,13 +232,12 @@ fn print_changes( if ver_pre != ver_post { println!( - "{} {} {} {} {} {}", + "{} {} {} {} ~> {}", "[C:]".bold().bright_yellow(), p, "@".yellow(), version_str_pre.magenta(), - "~>".magenta(), - version_str_post.blue().blink() + version_str_post.blue() ); } }