From 20c88afb0e8fd1c9d43c0c0ab50119d5d477c9bb Mon Sep 17 00:00:00 2001 From: PandaDEV <70103896+0PandaDEV@users.noreply.github.com> Date: Sun, 20 Oct 2024 23:05:51 +1000 Subject: [PATCH] cleanup --- src/main.rs | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/src/main.rs b/src/main.rs index 08099e3..b7eaffc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,3 @@ -use std::{io::Write, time::Instant}; - use clap::{CommandFactory, Parser}; use kdam::{tqdm, BarExt, Column, RichProgress, Spinner, term::Colorizer}; use streamshare::{delete, upload}; @@ -56,10 +54,10 @@ async fn main() -> std::io::Result<()> { Column::Spinner(Spinner::new(&["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"], 80.0, 1.0)), Column::Percentage(1), Column::Text("•".to_owned()), - Column::CountTotal, - Column::Text("•".to_owned()), Column::Animation, Column::Text("•".to_owned()), + Column::CountTotal, + Column::Text("•".to_owned()), Column::Rate, Column::Text("•".to_owned()), Column::RemainingTime, @@ -123,20 +121,4 @@ fn parse_delete_param(param: &str) -> Option<(&str, &str)> { } else { None } -} - -fn readable(bytes: u64) -> String { - const KB: f64 = 1024.0; - const MB: f64 = KB * 1024.0; - const GB: f64 = MB * 1024.0; - - if bytes as f64 >= GB { - format!("{:.2}gb", bytes as f64 / GB) - } else if bytes as f64 >= MB { - format!("{:.2}mb", bytes as f64 / MB) - } else if bytes as f64 >= KB { - format!("{:.2}kb", bytes as f64 / KB) - } else { - format!("{}b", bytes) - } -} +} \ No newline at end of file