Compare commits

..

No commits in common. "6e18d412a9d5b9dad8021e998ba912c8313570ef" and "cc72d58994924bc58d610ce9ef303e3b33fcf847" have entirely different histories.

3 changed files with 403 additions and 454 deletions

854
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,6 @@ clap = { version = "4.5.4", features = ["derive"] }
femme = "2.2.1"
home = "0.5.9"
log = "0.4.21"
openssl = { version = "0.10.68", features = ["vendored"] }
reqwest = "0.12.3"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"

View File

@ -19,7 +19,7 @@ pub const RED: &str = "\x1b[1;31m";
pub const BLUE: &str = "\x1b[34m";
pub const WARN: &str = "\x1b[33m";
pub const RESET: &str = "\x1b[0m";
pub const GRAY: &str = "\x1b[90m";
pub const GRAY: &str = "\x1b[30m";
#[derive(Debug, Parser)]
#[command(version, about, long_about = None)]