[package]
name = "agentlog"
version = "0.1.2"
edition = "2021"
rust-version = "1.93"
description = "CLI flight recorder for AI coding agents - capture, store, and replay AI sessions"
authors = ["Dmytro Barabash <dbarabashdev@gmail.com>"]
license = "MIT"
repository = "https://github.com/dbarabashh/agentlog"
homepage = "https://github.com/dbarabashh/agentlog"
documentation = "https://docs.rs/agentlog"
readme = "README.md"
keywords = ["cli", "ai", "developer-tools", "git", "observability"]
categories = ["command-line-utilities", "development-tools"]
exclude = [".github/*", "tests/*", ".gitignore"]
[[bin]]
name = "agentlog"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive", "cargo"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.6", features = ["v4", "serde"] }
anyhow = "1.0"
dirs = "5.0"
tokio = { version = "1.35", features = ["rt-multi-thread", "macros", "process", "fs", "io-util", "signal", "time"] }
tokio-util = "0.7"
futures = "0.3"
walkdir = "2.4"
notify = "6.1"
similar = "2.4"
colored = "2.1"
indicatif = "0.17"
console = "0.15"
regex = "1.10"
rusqlite = { version = "0.32", features = ["bundled", "chrono", "uuid", "serde_json"] }
[dev-dependencies]
tempfile = "3.9"
assert_cmd = "2.0"
predicates = "3.0"