llm-git 0.1.2

AI-powered git commit message generator using Claude and other LLMs via OpenAI-compatible APIs
Documentation
[[bin]]
name = "llm-git"
path = "src/main.rs"

[build-dependencies.serde_json]
version = "1.0"

[dependencies.anyhow]
version = "1.0"

[dependencies.arboard]
version = "3.4"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.dotenvy]
version = "0.15"

[dependencies.parking_lot]
version = "0.12.5"

[dependencies.rayon]
version = "1.10"

[dependencies.reqwest]
features = ["json", "blocking"]
version = "0.12"

[dependencies.rust-embed]
version = "8.1"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.tera]
version = "1.1"

[dependencies.thiserror]
version = "2.0"

[dependencies.toml]
version = "0.9"

[dependencies.unicode-normalization]
version = "0.1"

[lib]
name = "llm_git"
path = "src/lib.rs"

[lints.clippy]
allow_attributes_without_reason = "warn"
borrow_as_ptr = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_ptr_alignment = "allow"
cast_sign_loss = "allow"
default_trait_access = "allow"
float_cmp = "allow"
inconsistent_struct_constructor = "allow"
inline_always = "allow"
items_after_statements = "allow"
let_underscore_untyped = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
missing_errors_doc = "allow"
missing_fields_in_debug = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
ptr_as_ptr = "allow"
redundant_closure_for_method_calls = "allow"
ref_as_ptr = "allow"
return_self_not_must_use = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
tuple_array_conversions = "allow"
undocumented_unsafe_blocks = "warn"
unreadable_literal = "allow"
unsafe_derive_deserialize = "allow"
verbose_bit_mask = "allow"
wildcard_imports = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.correctness]
level = "deny"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.clippy.perf]
level = "warn"
priority = -1

[lints.clippy.style]
level = "warn"
priority = -1

[lints.clippy.suspicious]
level = "deny"
priority = -1

[package]
authors = ["can1357 <me@can.ac>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "AI-powered git commit message generator using Claude and other LLMs via OpenAI-compatible APIs"
documentation = "https://github.com/can1357/llm-git"
edition = "2024"
homepage = "https://github.com/can1357/llm-git"
keywords = ["git", "commit", "ai", "claude", "llm"]
license = "MIT"
name = "llm-git"
readme = "README.md"
repository = "https://github.com/can1357/llm-git"
rust-version = "1.91"
version = "0.1.2"