gigi-cli 1.0.1

Gigi — A Claude Code-like AI coding assistant CLI in Rust
[package]
name = "gigi-cli"
version = "1.0.1"
edition = "2021"
description = "Gigi — A Claude Code-like AI coding assistant CLI in Rust"
authors = ["Abhay Mourya"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/abhay557/Gigi-cli"
homepage = "https://github.com/abhay557/Gigi-cli"
include = [
    "src/**/*",
    "Cargo.toml",
    "LICENSE",
    "README.md",
]

[[bin]]
name = "gigi"
path = "src/main.rs"

[dependencies]
# CLI framework
clap = { version = "4", features = ["derive"] }

# Async runtime
tokio = { version = "1", features = ["full"] }

# HTTP client for API calls
reqwest = { version = "0.12", features = ["json", "stream"] }

# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"

# Error handling
anyhow = "1"

# Async trait support
async-trait = "0.1"

# Timestamps and date handling
chrono = { version = "0.4", features = ["serde"] }

# Session UUIDs
uuid = { version = "1", features = ["v4"] }

# REPL input with history
rustyline = "15"

# Terminal colors and styling
colored = "2"

# Stream utilities
futures = "0.3"

# Directory utilities
dirs = "6"

# Glob pattern matching
glob = "0.3"

# Regular expressions
regex = "1"

# Directory traversal
walkdir = "2"

# URL encoding utilities
urlencoding = "2"