[package]
name = "blotter-cli"
version = "1.1.0"
edition = "2024"
rust-version = "1.89"
license = "MIT"
description = "Append-only friction ledger for AI agents: log the cuts that got in the way and the findings worth writing up, find what recurs, promote it into durable fixes, and verify the fixes held."
repository = "https://github.com/BigCactusLabs/blotter"
keywords = ["cli", "agents", "ai", "jsonl", "friction"]
categories = ["command-line-utilities", "development-tools"]
include = ["src/**", "Cargo.toml", "Cargo.lock", "README.md", "CHANGELOG.md", "LICENSE"]
[lib]
name = "blotter"
[[bin]]
name = "blotter"
path = "src/main.rs"
[dependencies]
clap = { version = "4", default-features = false, features = ["derive", "std", "help", "usage", "error-context", "suggestions"] }
jiff = { version = "0.2", default-features = false, features = ["std", "perf-inline"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
sha2 = "0.11"
thiserror = "2"
libc = "0.2"
[dev-dependencies]
assert_cmd = "2"
tempfile = "3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
[lints.clippy]
result_large_err = "allow"