langgraph_checkpoint_sqlite_rs/lib.rs
1//! SQLite checkpoint saver implementation using sqlx.
2//!
3//! Mirrors the architecture of `langgraph-checkpoint-postgres`, adapted for
4//! SQLite's syntax and feature set. Uses a three-table schema
5//! (`checkpoints`, `checkpoint_blobs`, `checkpoint_writes`) plus a
6//! `checkpoint_migrations` table for schema versioning.
7
8pub mod queries;
9pub mod saver;
10
11pub use saver::SqliteSaver;