[package]
name = "gitfetch-rs"
version = "0.1.4"
edition = "2021"
authors = ["AbletonPilot"]
license = "GPL-2.0-only"
description = "Neofetch-style CLI tool for git providers (Rust port of gitfetch by Matars)"
repository = "https://github.com/AbletonPilot/gitfetch-rs"
readme = "README.md"
keywords = ["git", "github", "cli", "neofetch", "stats"]
categories = ["command-line-utilities"]
exclude = [
".github/",
".gitignore",
"rustfmt.toml",
"tests/",
]
[dependencies]
clap = { version = "4.5.50", features = ["derive", "cargo"] }
crossterm = "0.29"
console = "0.16"
dialoguer = "0.12"
reqwest = { version = "0.12.24", features = ["json", "rustls-tls"] }
tokio = { version = "1.48", features = ["full"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
rusqlite = { version = "0.37", features = ["bundled"] }
chrono = "0.4.42"
toml = "0.9"
directories = "6.0"
anyhow = "1.0.100"
thiserror = "2.0"
git2 = "0.20"
async-trait = "0.1.83"
regex = "1.12.2"
unicode-width = "0.1"
[dev-dependencies]
mockito = "1.6"
tempfile = "3.15"