[package]
edition = "2021"
name = "aa-storage-sqlite-buffer"
version = "0.0.1-alpha.9"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local in-process SQLite event buffer that survives brief gateway/queue outages and flushes audit events on reconnect"
readme = false
license = "Apache-2.0"
repository = "https://github.com/ai-agent-assembly/agent-assembly"
[lib]
name = "aa_storage_sqlite_buffer"
path = "src/lib.rs"
[[test]]
name = "cap"
path = "tests/cap.rs"
[[test]]
name = "drain"
path = "tests/drain.rs"
[[test]]
name = "kill_restart"
path = "tests/kill_restart.rs"
[[test]]
name = "metrics"
path = "tests/metrics.rs"
[[test]]
name = "pragma"
path = "tests/pragma.rs"
[[test]]
name = "restart"
path = "tests/restart.rs"
[dependencies.aa-core]
version = "0.0.1-alpha.9"
features = ["serde"]
[dependencies.dirs]
version = "6"
[dependencies.metrics]
version = "0.24"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.metrics-util]
version = "0.20"
features = ["debugging"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
]
[lints.clippy]
all = "warn"
complexity = "warn"
correctness = "deny"
perf = "warn"
style = "warn"
suspicious = "deny"