kivis 0.5.1

Type-safe database schema generation for Rust with support for custom storage backends, automatic indexing, and layered cache architectures
Documentation
1
2
3
4
5
6
7
mod lexicographic;
#[cfg(feature = "memory-storage")]
mod memory;

pub use lexicographic::*;
#[cfg(feature = "memory-storage")]
pub use memory::{MemoryStorage, MemoryStorageError};