[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]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4"] }
rustyline = "15"
colored = "2"
futures = "0.3"
dirs = "6"
glob = "0.3"
regex = "1"
walkdir = "2"
urlencoding = "2"