[package]
edition = "2021"
rust-version = "1.85"
name = "agent-store"
version = "0.1.2"
authors = ["Shawn Hartsock <hartsock@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Causal-ordered, backend-pluggable store substrate for the agent fleet — a monotonic generation counter and a per-writer BLAKE3-chained log, with a commit doorbell. SQLite today; Postgres behind a feature gate (Phase 2)."
readme = "README.md"
keywords = [
"agent",
"store",
"causal",
"blake3",
"sqlite",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Gilamonster-Foundation/agent-store"
[features]
default = []
pg = []
[lib]
name = "agent_store"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.blake3]
version = "1.8"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.toml]
version = "0.8"