Skip to main content

agnt_store/
lib.rs

1//! # agnt-store
2//!
3//! SQLite-backed message store for the agnt agent runtime.
4//!
5//! Provides a bundled SQLite persistence layer that implements
6//! [`agnt_core::MessageStore`] with session-scoped message logs and
7//! microsecond-level tool call profiling.
8//!
9//! Uses `rusqlite/bundled` so there's no system libsqlite dependency —
10//! builds everywhere Rust builds.
11
12pub mod store;
13
14pub use store::Store;