turnlog 0.1.0

Lightweight local provenance recorder for agent sessions and turns
[package]
name = "turnlog"
version = "0.1.0"
edition = "2024"
description = "Lightweight local provenance recorder for agent sessions and turns"
license = "MIT"
repository = "https://github.com/ProbabilityEngineer/turnlog"
homepage = "https://github.com/ProbabilityEngineer/turnlog"
readme = "README.md"
keywords = ["agent", "provenance", "session", "trace", "cli"]
categories = ["command-line-utilities", "development-tools"]
include = [
  "src/**",
  "Cargo.toml",
  "Cargo.lock",
  "README.md",
  "DESIGN.md",
  "LICENSE",
]

[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
time = { version = "0.3", features = ["formatting", "parsing", "serde", "macros"] }
ulid = "1"

[dev-dependencies]
tempfile = "3"