git-chronicle 0.1.10

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.10"
build = "build.rs"
exclude = [
    ".github/",
    ".claude/",
    "features/",
    "HISTORY.md",
    "CLAUDE.md",
    "web/node_modules/",
    "web/dist/",
]
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",
    "web",
]
tui = [
    "ratatui",
    "crossterm",
]
web = [
    "dep:tiny_http",
    "dep:rust-embed",
    "dep:open",
]

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

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

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

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

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

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

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

[dependencies.open]
version = "5"
optional = true

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

[dependencies.rust-embed]
version = "8"
features = ["interpolate-folder-path"]
optional = true

[dependencies.schemars]
version = "1.2.1"
features = ["derive"]

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

[dependencies.serde_json]
version = "1"

[dependencies.snafu]
version = "0.8"

[dependencies.tiny_http]
version = "0.12"
optional = true

[dependencies.toml]
version = "0.9"

[dependencies.tracing]
version = "0.1"

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

[dependencies.ureq]
version = "3"
features = ["json"]

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

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