langgraph-checkpoint-sqlite-rs 0.2.1

SQLite checkpointer implementation for LangGraph applications in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! SQLite checkpoint saver implementation using sqlx.
//!
//! Mirrors the architecture of `langgraph-checkpoint-postgres`, adapted for
//! SQLite's syntax and feature set. Uses a three-table schema
//! (`checkpoints`, `checkpoint_blobs`, `checkpoint_writes`) plus a
//! `checkpoint_migrations` table for schema versioning.

pub mod queries;
pub mod saver;

pub use saver::SqliteSaver;