paceflow 0.2.4

Local-first CLI that turns AI coding session history and git metadata into engineering analytics.
Documentation
[package]
name = "paceflow"
version = "0.2.4"
edition = "2024"
default-run = "paceflow"
description = "Local-first CLI that turns AI coding session history and git metadata into engineering analytics."
license = "MIT"
repository = "https://github.com/PaceFlow/ai-engineering-analytics"
homepage = "https://github.com/PaceFlow/ai-engineering-analytics"
readme = "README.md"
keywords = ["analytics", "ai", "cli", "git", "developer-tools"]
categories = ["command-line-utilities", "development-tools"]

[[bin]]
name = "paceflow"
path = "src/main.rs"

[dependencies]
clap = { version = "4.5.60", features = ["derive"] }
rusqlite = { version = "0.38.0", features = ["bundled"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["raw_value"] }
anyhow = "1.0.102"
thiserror = "2.0.18"
dirs = "6.0.0"
md5 = "0.8.0"
chrono = { version = "0.4.44", features = ["serde"] }
similar = "2"
terminal_size = "0.4"
regex = "1.12.2"
percent-encoding = "2.3.2"
reqwest = { version = "0.12.24", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1.48.0", features = ["net", "rt", "sync", "time"] }
rayon = "1.12.0"
ratatui = "0.30.0"

[dev-dependencies]
assert_cmd = "2.1.1"
insta = { version = "1.43.2", features = ["yaml"] }
tempfile = "3.23.0"

[profile.release]
debug = "line-tables-only"

[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/paceflow-{ target }{ archive-suffix }"
bin-dir = "paceflow-{ target }/{ bin }{ binary-ext }"
pkg-fmt = "tgz"

[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"