git-cli 0.4.0

A CLI tool that translates natural-language task descriptions into git commands using a local Ollama LLM
[package]
name = "git-cli"
version = "0.4.0"
edition = "2021"
description = "A CLI tool that translates natural-language task descriptions into git commands using a local Ollama LLM"
license = "MIT"
authors = ["somayaj"]
repository = "https://github.com/somayaj/git-cli"
homepage = "https://github.com/somayaj/git-cli"
keywords = ["git", "cli", "ollama", "llm", "ai"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"

[[bin]]
name = "git-cli"
path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
colored = "2"
dirs = "6"
tokio = { version = "1", features = ["full"] }
futures-util = "0.3"
regex = "1"
clap_complete = "4"