commitbee 0.2.0

AI-powered commit message generator using tree-sitter semantic analysis and local LLMs
Documentation
# SPDX-FileCopyrightText: 2026 Sephyi <me@sephy.io>
#
# SPDX-License-Identifier: PolyForm-Noncommercial-1.0.0

[package]
name = "commitbee"
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
description = "AI-powered commit message generator using tree-sitter semantic analysis and local LLMs"
license = "PolyForm-Noncommercial-1.0.0"
repository = "https://github.com/Sephyi/commitbee"
readme = "README.md"
keywords = ["git", "commit-message", "conventional-commits", "tree-sitter", "llm"]
categories = ["development-tools", "command-line-utilities"]
exclude = [".github/", "tests/snapshots/"]

[dependencies]
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4.5"

# Async runtime
tokio = { version = "1.43", features = ["rt-multi-thread", "macros", "signal", "sync", "process"] }
tokio-stream = "0.1"
tokio-util = "0.7"

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.9"

# Config & paths
directories = "6.0"
figment = { version = "0.10", features = ["toml", "env"] }

# HTTP client
reqwest = { version = "0.13", features = ["json", "stream"] }

# Git (pure Rust) - minimal features
gix = { version = "0.78", default-features = false, features = ["revision"] }

# Code analysis
tree-sitter = "0.26"
tree-sitter-rust = "0.24"
tree-sitter-typescript = "0.23"
tree-sitter-python = "0.25"
tree-sitter-go = "0.25"
tree-sitter-javascript = "0.25"

# Error handling
thiserror = "2.0"
miette = { version = "7.6", features = ["fancy"] }

# Terminal UI
dialoguer = "0.12"
console = "0.16"
indicatif = "0.18"

# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

# Secure storage (optional)
keyring = { version = "3", optional = true }

# Utilities
regex = "1.12"

[features]
default = []
secure-storage = ["keyring"]

[profile.release]
lto = true
strip = true
codegen-units = 1

[dev-dependencies]
tempfile = "3.25"
assert_cmd = "2.0"
predicates = "3.1"
wiremock = "0.6"
insta = { version = "1.42", features = ["yaml"] }
proptest = "1.6"