[package]
edition = "2024"
rust-version = "1.93"
name = "kodo"
version = "0.6.2"
authors = ["yumazak"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool for analyzing Git commit statistics with TUI visualization"
homepage = "https://github.com/yumazak/kodo"
readme = "README.md"
keywords = [
"git",
"statistics",
"cli",
"tui",
"ratatui",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/yumazak/kodo"
[lib]
name = "kodo"
path = "src/lib.rs"
[[bin]]
name = "kodo"
path = "src/main.rs"
[[test]]
name = "action_from_key"
path = "tests/action_from_key.rs"
[[test]]
name = "output_spinner"
path = "tests/output_spinner.rs"
[[test]]
name = "tui_ui_snapshots"
path = "tests/tui_ui_snapshots.rs"
[[bench]]
name = "git_stats"
path = "benches/git_stats.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.chrono-tz]
version = "0.10"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.comfy-table]
version = "7.1"
[dependencies.crossterm]
version = "0.28"
[dependencies.dirs]
version = "5.0"
[dependencies.git2]
version = "0.19"
[dependencies.indicatif]
version = "0.18.3"
[dependencies.ratatui]
version = "0.29"
features = ["crossterm"]
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.insta]
version = "1.43"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.tempfile]
version = "3.14"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"
[profile.release]
lto = true
codegen-units = 1
strip = true