aion-store-libsql
Durable libSQL-backed event store implementation for Aion workflows. This crate opens embedded or embedded-replica libSQL databases, applies the Aion event-store schema, and implements the aion-store persistence traits for histories, timers, and visibility records.
Install
[]
= "0.4.0"
Key public types
LibSqlStoreis the durableaion_store::EventStoreimplementation.LibSqlConfigcaptures operator-provided connection and tuning settings.LibSqlModeselects embedded local-file or embedded-replica operation.
Minimal usage
use EventStore;
use LibSqlStore;
let store = open.await?;
store.validate_event_compatibility.await?;
# Ok::