Compare commits

...

2 Commits

Author SHA1 Message Date
b1ek 6e18d412a9
use vendored openssl 2024-10-22 15:41:47 +10:00
b1ek cd2c1bc285
fix the gray color displaying incorrectly on some terminals 2024-10-22 14:56:36 +10:00
3 changed files with 460 additions and 409 deletions

866
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -11,6 +11,7 @@ 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[30m";
pub const GRAY: &str = "\x1b[90m";
#[derive(Debug, Parser)]
#[command(version, about, long_about = None)]