tandem-memory 0.6.9

Memory storage and embedding utilities for Tandem
1
2
3
4
5
6
7
8
9
10
11
//! Backend-neutral memory schema migration vocabulary.
//!
//! This registry describes logical schema changes. Backend implementations are
//! responsible for translating them into their SQL dialect and for marking a
//! migration current only after that translation is complete.

mod registry;
mod sqlite;

pub use registry::*;
pub(crate) use sqlite::run_sqlite_migrations;