From 5955da0b6c5d7bdc343f8e50440c29c5b6d93e4f Mon Sep 17 00:00:00 2001 From: ad4mx Date: Sat, 30 Jul 2022 21:11:46 +0200 Subject: [PATCH] fixed version --- Cargo.toml | 2 +- src/operations/info.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 010b78f..c96eda8 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ colored = { version = "2.0.0", default-features = false } tabled = { version = "0.8.0", default-features = false, features = ["derive", "color"] } crossterm = { version = "0.24.0", default-features = false } regex = { version = "1.6.0", default-features = false, features = ["std"] } -spinoff = { version = "0.5.0", default-features = false } +spinoff = { version = "0.5.2", default-features = false } rm_rf = { version = "0.6.2", default-features = false } [target.'cfg(target_os = "linux")'.dependencies] diff --git a/src/operations/info.rs b/src/operations/info.rs index e476938..68e4fc4 100644 --- a/src/operations/info.rs +++ b/src/operations/info.rs @@ -162,7 +162,7 @@ pub fn info(verbose: bool) { .unwrap(); // Stop the spinner with a success message - sp.success("Done!"); + sp.success(&"Done!".bold()); log!(verbose, "Repos: {:?}", repos); }