git-chronicle 0.1.2

AI-powered commit annotation tool that captures reasoning and intent behind code changes
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.82"
name = "git-chronicle"
version = "0.1.2"
build = false
exclude = [
    ".github/",
    ".claude/",
    "features/",
    "HISTORY.md",
    "CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AI-powered commit annotation tool that captures reasoning and intent behind code changes"
homepage = "https://github.com/gotwalt/git-chronicle"
readme = "README.md"
keywords = [
    "git",
    "annotation",
    "ai",
    "commit",
    "developer-tools",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/gotwalt/git-chronicle"

[features]
default = [
    "tui",
    "lang-rust",
    "lang-typescript",
    "lang-python",
    "lang-go",
    "lang-java",
    "lang-c",
    "lang-cpp",
    "lang-ruby",
    "lang-objc",
    "lang-swift",
]
lang-c = ["dep:tree-sitter-c"]
lang-cpp = ["dep:tree-sitter-cpp"]
lang-go = ["dep:tree-sitter-go"]
lang-java = ["dep:tree-sitter-java"]
lang-objc = ["dep:tree-sitter-objc"]
lang-python = ["dep:tree-sitter-python"]
lang-ruby = ["dep:tree-sitter-ruby"]
lang-rust = ["dep:tree-sitter-rust"]
lang-swift = ["dep:tree-sitter-swift"]
lang-typescript = ["dep:tree-sitter-typescript"]
tui = [
    "ratatui",
    "crossterm",
]

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

[[bin]]
name = "git-chronicle"
path = "src/main.rs"

[[test]]
name = "annotate_live"
path = "tests/annotate_live.rs"

[[test]]
name = "ast_test"
path = "tests/ast_test.rs"

[[test]]
name = "git_ops_test"
path = "tests/git_ops_test.rs"

[[test]]
name = "team_ops_test"
path = "tests/team_ops_test.rs"

[[test]]
name = "write_path_test"
path = "tests/write_path_test.rs"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

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

[dependencies.crossterm]
version = "0.28"
optional = true

[dependencies.ratatui]
version = "0.29"
features = ["crossterm"]
optional = true
default-features = false

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

[dependencies.serde_json]
version = "1"

[dependencies.snafu]
version = "0.8"

[dependencies.toml]
version = "0.8"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[dependencies.tree-sitter]
version = "0.25"

[dependencies.tree-sitter-c]
version = "0.24"
optional = true

[dependencies.tree-sitter-cpp]
version = "0.23"
optional = true

[dependencies.tree-sitter-go]
version = "0.25"
optional = true

[dependencies.tree-sitter-java]
version = "0.23"
optional = true

[dependencies.tree-sitter-objc]
version = "3"
optional = true

[dependencies.tree-sitter-python]
version = "0.25"
optional = true

[dependencies.tree-sitter-ruby]
version = "0.23"
optional = true

[dependencies.tree-sitter-rust]
version = "0.24"
optional = true

[dependencies.tree-sitter-swift]
version = "0.7"
optional = true

[dependencies.tree-sitter-typescript]
version = "0.23"
optional = true

[dependencies.ureq]
version = "2"
features = [
    "json",
    "tls",
]

[dependencies.uuid]
version = "1"
features = ["v4"]

[dev-dependencies.tempfile]
version = "3"