[package]
name = "terraphim-session-analyzer"
version = "1.5.1"
edition = "2021"
authors = ["Zestic AI Development Team"]
description = "Analyze AI coding assistant session logs to identify agent usage patterns"
documentation = "https://terraphim.ai"
homepage = "https://terraphim.ai"
repository = "https://github.com/terraphim/terraphim-ai"
license = "Apache-2.0"
keywords = ["terraphim", "ai", "session-analysis", "log-analysis", "agent"]
readme = "../../README.md"
[[bin]]
name = "cla"
path = "src/main.rs"
[[bin]]
name = "tsa"
path = "src/main.rs"
[features]
default = []
terraphim = [
"dep:terraphim_automata",
"dep:terraphim_types",
"dep:terraphim_config",
]
connectors = ["dep:rusqlite"]
full = ["terraphim", "connectors"]
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "1.0"
jiff = { version = "0.1", features = ["serde"] }
regex = "1.10"
lazy_static = "1.4"
indexmap = { version = "2.2", features = ["serde"] }
aho-corasick = "1.1"
shell-words = "1.1"
toml = "0.8"
colored = "2.1"
indicatif = "0.17"
tabled = "0.15"
dialoguer = "0.12"
rayon = "1.8"
walkdir = "2.4"
glob = "0.3"
home = "0.5"
handlebars = "5.1"
csv = "1.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
terraphim_automata = { path = "../terraphim_automata", version = "1.0.0", optional = true }
terraphim_types = { path = "../terraphim_types", version = "1.0.0", optional = true }
terraphim_config = { path = "../terraphim_config", version = "1.0.0", optional = true }
rusqlite = { version = "0.32", features = ["bundled"], optional = true }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
criterion = "0.8"
insta = "1.46"
tempfile = "3.8"
proptest = "1.4"