-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 758 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "committer-rs"
version = "0.1.0"
edition = "2021"
description = "A tool to that commits changes to git repositories using LLM generated commit messages."
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/milarze/committer-rs"
readme = "README.md"
[dependencies]
anthropic = "0.0.8"
anyhow = "1.0.97"
chrono = "0.4.34"
once_cell = "1.19.0"
clap = "4.5.34"
git2 = "0.20.4"
home = "0.5.11"
serde = { version = "1.0.219", features = ["serde_derive"] }
serde_yaml = "0.9.34"
tempfile = "3.19.1"
tokio = { version = "1.44.2", features = ["rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["json", "env-filter"] }
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = "z"